Hello community, here is the log from the commit of package udev checked in at Tue May 2 00:08:53 CEST 2006. -------- --- udev/udev.changes 2006-04-27 23:24:49.000000000 +0200 +++ STABLE/udev/udev.changes 2006-05-01 20:23:24.000000000 +0200 @@ -1,0 +2,5 @@ +Mon May 1 20:22:51 CEST 2006 - kay.sievers@suse.de + +- fix offsetof build failure with new glibc + +------------------------------------------------------------------- New: ---- udev-offsetof-01.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ udev.spec ++++++ --- /var/tmp/diff_new_pack.PHMtSU/_old 2006-05-02 00:08:47.000000000 +0200 +++ /var/tmp/diff_new_pack.PHMtSU/_new 2006-05-02 00:08:47.000000000 +0200 @@ -13,7 +13,7 @@ Name: udev URL: ftp://ftp.kernel.org/pub/linux/utils/kernel/hotplug/ Version: 085 -Release: 26 +Release: 27 License: GPL Group: System/Kernel Summary: A rule based device node and kernel event manager @@ -30,6 +30,7 @@ Patch6: udevtrigger-fix-order-01.patch Patch7: udev-initial-seqnum-01.patch Patch8: udev-mkdir-udev-dir-01.patch +Patch9: udev-offsetof-01.patch # Source1: path_id # @@ -78,6 +79,7 @@ %patch6 -p1 %patch7 -p1 %patch8 -p1 +%patch9 -p1 %build make V=1 EXTRAS=%{extras} STRIPCMD= OPTFLAGS="${RPM_OPT_FLAGS}" all @@ -230,6 +232,8 @@ %attr(600,root,root) %dev(c,10,200) /lib/udev/devices/fwmonitor %changelog -n udev +* Mon May 01 2006 - kay.sievers@suse.de +- fix offsetof build failure with new glibc * Thu Apr 27 2006 - kay.sievers@suse.de - don't use startproc, we need to wait for udevd to be initialized create /dev/.udev directory from udevd for seqnum export (#169103) ++++++ udev-offsetof-01.patch ++++++ diff --git a/udevcontrol.c b/udevcontrol.c index 6d91adc..8add09e 100644 --- a/udevcontrol.c +++ b/udevcontrol.c @@ -18,10 +18,6 @@ * */ -#include <sys/types.h> -#include <sys/socket.h> -#include <sys/wait.h> -#include <sys/un.h> #include <time.h> #include <errno.h> #include <stdio.h> @@ -29,7 +25,10 @@ #include <stddef.h> #include <string.h> #include <unistd.h> -#include <linux/stddef.h> +#include <sys/types.h> +#include <sys/socket.h> +#include <sys/wait.h> +#include <sys/un.h> #include "udev.h" #include "udevd.h" diff --git a/udevmonitor.c b/udevmonitor.c index 80c4975..fb1f42c 100644 --- a/udevmonitor.c +++ b/udevmonitor.c @@ -21,6 +21,7 @@ #include <unistd.h> #include <stdio.h> #include <stdlib.h> +#include <stddef.h> #include <string.h> #include <fcntl.h> #include <errno.h> diff --git a/udevsend.c b/udevsend.c index 1b9860b..9f5059a 100644 --- a/udevsend.c +++ b/udevsend.c @@ -30,7 +30,6 @@ #include <sys/socket.h> #include <sys/wait.h> #include <sys/un.h> -#include <linux/stddef.h> #include "udev.h" #include "udevd.h" ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun...
participants (1)
-
root@suse.de