From b9bcb18a4435491bad5cd76ecf26a857b2f40800 Mon Sep 17 00:00:00 2001 From: Andrea Adami Date: Mon, 13 Sep 2010 01:08:27 +0200 Subject: klibc: bump to 1.5.20 * still some doubt about klcc-cross packaging, triggering * NOTE: the following files were installed but not shipped in any package: * staging-klcc-cross seems sane, though. --- recipes/klibc/klibc-1.5.20/getrusage.patch | 34 ++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 recipes/klibc/klibc-1.5.20/getrusage.patch (limited to 'recipes/klibc/klibc-1.5.20/getrusage.patch') diff --git a/recipes/klibc/klibc-1.5.20/getrusage.patch b/recipes/klibc/klibc-1.5.20/getrusage.patch new file mode 100644 index 0000000000..224ab321d7 --- /dev/null +++ b/recipes/klibc/klibc-1.5.20/getrusage.patch @@ -0,0 +1,34 @@ +linux-libc-dev: getrusage() prototype should be protected from user space +see http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=575381 +guard added with 2.6.32 +Index: klibc-1.5.19/usr/include/sys/resource.h +=================================================================== +--- klibc-1.5.19.old/usr/include/sys/resource.h 2010-07-07 14:07:48.000000000 +0200 ++++ klibc-1.5.19/usr/include/sys/resource.h 2010-08-16 01:51:14.000000000 +0200 +@@ -12,6 +12,9 @@ + __extern int getpriority(int, int); + __extern int setpriority(int, int, int); + ++#include ++#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,32) + __extern int getrusage(int, struct rusage *); ++#endif + + #endif /* _SYS_RESOURCE_H */ +Index: klibc-1.5.19/usr/klibc/SYSCALLS.def +=================================================================== +--- klibc-1.5.19.old/usr/klibc/SYSCALLS.def 2010-08-16 01:49:02.000000000 +0200 ++++ klibc-1.5.19/usr/klibc/SYSCALLS.def 2010-08-16 01:55:07.000000000 +0200 +@@ -49,7 +49,12 @@ + int getpriority(int, int); + int getpriority::__getpriority(int, int); + int setpriority(int, int, int); ++ ++#include ++#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,32) + int getrusage(int, struct rusage *); ++#endif ++ + int sched_setscheduler(pid_t, int, const struct sched_param *); + int sched_yield(); + int prctl@varadic(int, unsigned long, unsigned long, unsigned long, unsigned long); -- cgit 1.2.3-korg