From: Kay Sievers Date: Sat, 18 Oct 2008 18:33:06 +0000 (+0200) Subject: pass make distcheck X-Git-Tag: 174~1413 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=2d9a1b1ef284663b14e2fda714eddcd9c12bc42a pass make distcheck --- diff --git a/NEWS b/NEWS index 35b57a3b4..289db9c8e 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,7 @@ +udev 131 +======== +Bugfixes. + udev 130 ======== Bugfixes. diff --git a/TODO b/TODO index e1ef80431..7cbe9163b 100644 --- a/TODO +++ b/TODO @@ -1,11 +1,8 @@ o add DVB variables to kernel, and drop shell script rule - o use libudev device in udev_rules.c - get rid of udevice, store rule matching state in rule iterator o rework rules to a match-action list, instead of a rules array - o add watershed extra o DEVTYPE for disks is set by the kernel, they will be removed from the default rules o "udevadm control" commands will only accept the -- syntax o symlink names to udevadm will no longer be resolved to old command names - o remove "udevinfo -V" + o fix "udevadm info -V" format o get distros to agree on a default set of rules diff --git a/configure.ac b/configure.ac index 6e98f37fb..5c96bb927 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_INIT([udev], - [130], + [131], [kay.sievers@vrfy.org]) AC_PREREQ(2.60) AC_CONFIG_SRCDIR([udev/udevd.c]) @@ -11,7 +11,7 @@ AC_PROG_LIBTOOL dnl /* libudev version */ LIBUDEV_LT_CURRENT=0 -LIBUDEV_LT_REVISION=3 +LIBUDEV_LT_REVISION=4 LIBUDEV_LT_AGE=0 AC_SUBST(LIBUDEV_LT_CURRENT) AC_SUBST(LIBUDEV_LT_REVISION) @@ -19,7 +19,7 @@ AC_SUBST(LIBUDEV_LT_AGE) dnl /* libvolume_id version */ VOLID_LT_CURRENT=1 -VOLID_LT_REVISION=3 +VOLID_LT_REVISION=4 VOLID_LT_AGE=0 AC_SUBST(VOLID_LT_CURRENT) AC_SUBST(VOLID_LT_REVISION) diff --git a/extras/collect/Makefile.am b/extras/collect/Makefile.am index 78eb5c759..895f1b7f0 100644 --- a/extras/collect/Makefile.am +++ b/extras/collect/Makefile.am @@ -6,7 +6,6 @@ udevhome_PROGRAMS = \ collect_SOURCES = \ collect.c \ - ../../udev/lib/libudev \ ../../udev/lib/libudev-private.h \ ../../udev/lib/libudev.c \ ../../udev/lib/libudev-util.c \