Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo commit in src/patchsets/glibc/2.9: 1085_all_glibc-2.9-check_native-headers.patch README.history
Date: Fri, 26 Dec 2008 21:46:41
Message-Id: E1LGKVy-0007OJ-Kh@stork.gentoo.org
1 vapier 08/12/26 21:46:38
2
3 Modified: README.history
4 Added: 1085_all_glibc-2.9-check_native-headers.patch
5 Log:
6 add patch from suse to fix warnings in check_native.c about missing memory prototypes
7
8 Revision Changes Path
9 1.4 src/patchsets/glibc/2.9/README.history
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo/src/patchsets/glibc/2.9/README.history?rev=1.4&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo/src/patchsets/glibc/2.9/README.history?rev=1.4&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo/src/patchsets/glibc/2.9/README.history?r1=1.3&r2=1.4
14
15 Index: README.history
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo/src/patchsets/glibc/2.9/README.history,v
18 retrieving revision 1.3
19 retrieving revision 1.4
20 diff -u -r1.3 -r1.4
21 --- README.history 26 Dec 2008 04:09:31 -0000 1.3
22 +++ README.history 26 Dec 2008 21:46:38 -0000 1.4
23 @@ -1,6 +1,7 @@
24 2 [pending]
25 + 1020_all_glibc-2.9-strlen-hack.patch
26 + 1060_all_glibc-nss-deepbind.patch
27 + + 1085_all_glibc-2.9-check_native-headers.patch
28 + 5021_all_2.9-fnmatch.patch
29 + 6120_all_ppc-glibc-2.9-atomic.patch
30 + 6221_all_arm-glibc-2.9-hidden-fpu-setjmp.patch
31
32
33
34 1.1 src/patchsets/glibc/2.9/1085_all_glibc-2.9-check_native-headers.patch
35
36 file : http://sources.gentoo.org/viewcvs.py/gentoo/src/patchsets/glibc/2.9/1085_all_glibc-2.9-check_native-headers.patch?rev=1.1&view=markup
37 plain: http://sources.gentoo.org/viewcvs.py/gentoo/src/patchsets/glibc/2.9/1085_all_glibc-2.9-check_native-headers.patch?rev=1.1&content-type=text/plain
38
39 Index: 1085_all_glibc-2.9-check_native-headers.patch
40 ===================================================================
41 many ports hit this warning:
42 ../sysdeps/unix/sysv/linux/check_native.c:46: warning: implicit declaration of function 'memset'
43 ../sysdeps/unix/sysv/linux/check_native.c:46: warning: implicit declaration of function 'memset'
44
45 snipped from suse
46
47 --- sysdeps/unix/sysv/linux/check_native.c
48 +++ sysdeps/unix/sysv/linux/check_native.c
49 @@ -23,6 +23,7 @@
50 #include <stddef.h>
51 #include <stdint.h>
52 #include <stdlib.h>
53 +#include <string.h>
54 #include <time.h>
55 #include <unistd.h>
56 #include <net/if.h>