chiark / gitweb /
replace strerror() usage with threadsafe "%m" format string
[elogind.git] / configure.ac
index 4be3ed583a82dea65b6aa16c248116c761236a33..bcc3554ac8d3e094930cf68d80dd4f2ee8d44f4c 100644 (file)
@@ -1,5 +1,5 @@
 AC_INIT([udev],
-       [126],
+       [128],
        [kay.sievers@vrfy.org])
 AC_PREREQ(2.60)
 AC_CONFIG_SRCDIR([udev/udevd.c])
@@ -11,15 +11,15 @@ AC_PROG_LIBTOOL
 
 dnl /* libudev version */
 LIBUDEV_LT_CURRENT=0
-LIBUDEV_LT_REVISION=0
+LIBUDEV_LT_REVISION=1
 LIBUDEV_LT_AGE=0
 AC_SUBST(LIBUDEV_LT_CURRENT)
 AC_SUBST(LIBUDEV_LT_REVISION)
 AC_SUBST(LIBUDEV_LT_AGE)
 
 dnl /* libvolume_id version */
-VOLID_LT_CURRENT=0
-VOLID_LT_REVISION=86
+VOLID_LT_CURRENT=1
+VOLID_LT_REVISION=1
 VOLID_LT_AGE=0
 AC_SUBST(VOLID_LT_CURRENT)
 AC_SUBST(VOLID_LT_REVISION)
@@ -31,10 +31,6 @@ AC_CHECK_LIB(c, inotify_init,
        [AC_DEFINE([HAVE_INOTIFY], 1, [inotify available])],
        [AC_MSG_WARN([inotify support disabled])])
 
-AC_CHECK_LIB(c, strlcpy,
-       [AC_DEFINE([HAVE_STRLCPY], 1, [strlcpy available])],
-       [])
-
 AC_ARG_WITH(udev-prefix,
        AS_HELP_STRING([--with-udev-prefix=DIR], [add prefix to internal udev path names]),
        [], [with_udev_prefix='${exec_prefix}'])