patches/glibc/2.9/300-2.9-check_native-headers.patch
author Matthieu Crapet <mcrapet@gmail.com>
Wed Jun 06 12:03:12 2012 +0200 (2012-06-06)
changeset 2991 252ade1e9e17
parent 1201 c9967a6e3b25
permissions -rw-r--r--
libc/eglibc: fix missing LIBC_TRY_CC_OPTION definition (eglibc 2.15)

Upstream SVN is currently broken:
http://www.eglibc.org/svn/branches/eglibc-2_15/libc/

LIBC_TRY_CC_OPTION macro is not defined in aclocal.m4.
This patch fix the configure script.

Once upstream branch will be fixed this patch could be reverted.

Related patch (committed to eglibc trunk):
Use autoconf macro for testing compiler options with empty input
http://sourceware.org/ml/libc-alpha/2012-03/msg00816.html

Signed-off-by: Matthieu Crapet <mcrapet@gmail.com>

diff -r 1f6c8e4b2b92 -r d10afc5bcc25
patches/eglibc/2_15/110-aclocal-LIBC_TRY_CC_OPTION.patch
     1 Original patch from: gentoo/src/patchsets/glibc/2.9/1085_all_glibc-2.9-check_native-headers.patch
     2 
     3 -= BEGIN original header =-
     4 many ports hit this warning:
     5 ../sysdeps/unix/sysv/linux/check_native.c:46: warning: implicit declaration of function 'memset'
     6 ../sysdeps/unix/sysv/linux/check_native.c:46: warning: implicit declaration of function 'memset'
     7 
     8 snipped from suse
     9 
    10 -= END original header =-
    11 
    12 diff -durN glibc-2_9.orig/sysdeps/unix/sysv/linux/check_native.c glibc-2_9/sysdeps/unix/sysv/linux/check_native.c
    13 --- glibc-2_9.orig/sysdeps/unix/sysv/linux/check_native.c	2007-11-24 04:12:17.000000000 +0100
    14 +++ glibc-2_9/sysdeps/unix/sysv/linux/check_native.c	2009-02-02 22:01:03.000000000 +0100
    15 @@ -23,6 +23,7 @@
    16  #include <stddef.h>
    17  #include <stdint.h>
    18  #include <stdlib.h>
    19 +#include <string.h>
    20  #include <time.h>
    21  #include <unistd.h>
    22  #include <net/if.h>