diff options
author | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
---|---|---|
committer | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
commit | 709c4d66e0b107ca606941b988bad717c0b45d9b (patch) | |
tree | 37ee08b1eb308f3b2b6426d5793545c38396b838 /packages/glibc/glibc-2.4/glibc-use-isystem-include-fixed.patch | |
parent | fa6cd5a3b993f16c27de4ff82b42684516d433ba (diff) |
rename packages/ to recipes/ per earlier agreement
See links below for more details:
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816
Signed-off-by: Denys Dmytriyenko <denis@denix.org>
Acked-by: Mike Westerhof <mwester@dls.net>
Acked-by: Philip Balister <philip@balister.org>
Acked-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Marcin Juszkiewicz <hrw@openembedded.org>
Acked-by: Koen Kooi <koen@openembedded.org>
Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'packages/glibc/glibc-2.4/glibc-use-isystem-include-fixed.patch')
-rw-r--r-- | packages/glibc/glibc-2.4/glibc-use-isystem-include-fixed.patch | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/packages/glibc/glibc-2.4/glibc-use-isystem-include-fixed.patch b/packages/glibc/glibc-2.4/glibc-use-isystem-include-fixed.patch deleted file mode 100644 index d9ed12a0fe..0000000000 --- a/packages/glibc/glibc-2.4/glibc-use-isystem-include-fixed.patch +++ /dev/null @@ -1,46 +0,0 @@ -http://sourceware.org/ml/libc-alpha/2007-03/msg00017.html - -GCC trunk now has multiple internal headers directories, one -containing the self-contained GCC-provided headers and one containing -the <limits.h> (not self-contained but including libc's <limits.h> or -a fixed version thereof) and the fixed headers; more such directories -may be added in future. - -When glibc uses -nostdinc, it needs to use -isystem options for all -these internal directories. This patch teaches it about the -include-fixed directory (and is harmless with old GCC versions without -that directory). - -2007-03-18 Joseph Myers <joseph@codesourcery.com> - - * configure.in: Also pass -isystem option for GCC's include-fixed - directory. - * configure: Regenerate. - - -Index: glibc-2.6.1/configure -=================================================================== ---- glibc-2.6.1.orig/configure 2008-09-12 16:38:06.000000000 -0700 -+++ glibc-2.6.1/configure 2008-09-12 16:39:22.000000000 -0700 -@@ -4563,7 +4563,7 @@ - # thing on a system that doesn't need fixincludes. (Not presently a problem.) - if test -n "$sysheaders"; then - ccheaders=`$CC -print-file-name=include` -- SYSINCLUDES="-nostdinc -isystem $ccheaders \ -+ SYSINCLUDES="-nostdinc -isystem $ccheaders -isystem $ccheaders-fixed \ - -isystem `echo $sysheaders | sed 's/:/ -isystem /g'`" - if test -n "$CXX"; then - cxxversion=`$CXX -dumpversion 2>&5` && -Index: glibc-2.6.1/configure.in -=================================================================== ---- glibc-2.6.1.orig/configure.in 2008-09-12 16:38:26.000000000 -0700 -+++ glibc-2.6.1/configure.in 2008-09-12 16:39:01.000000000 -0700 -@@ -912,7 +912,7 @@ - # thing on a system that doesn't need fixincludes. (Not presently a problem.) - if test -n "$sysheaders"; then - ccheaders=`$CC -print-file-name=include` -- SYSINCLUDES="-nostdinc -isystem $ccheaders \ -+ SYSINCLUDES="-nostdinc -isystem $ccheaders -isystem $ccheaders-fixed \ - -isystem `echo $sysheaders | sed 's/:/ -isystem /g'`" - if test -n "$CXX"; then - cxxversion=`$CXX -dumpversion 2>&AS_MESSAGE_LOG_FD` && |