summaryrefslogtreecommitdiff
path: root/packages/glibc/files/glibc-includes-fixed-isystem.patch
diff options
context:
space:
mode:
authorMichael Lauer <mickey@vanille-media.de>2008-04-05 22:07:14 +0000
committerMichael Lauer <mickey@vanille-media.de>2008-04-05 22:07:14 +0000
commitbf39bb6e3fabae6da5f9b8084f8d478f07e4836c (patch)
treefa86a0ab3b29ca6e78f34c99ba3b649d8e6a344a /packages/glibc/files/glibc-includes-fixed-isystem.patch
parent2b5295d1ca8c5f876e8b6a5592706b751f03a401 (diff)
parent58ec003f0bbcaaa89c6080b675726bac9b952e29 (diff)
merge of '2bc71b9b93f22417784c3a4ed3576a76841878f2'
and 'edac95232b05ccd8efaeee530e0442683d1ef50a'
Diffstat (limited to 'packages/glibc/files/glibc-includes-fixed-isystem.patch')
-rw-r--r--packages/glibc/files/glibc-includes-fixed-isystem.patch32
1 files changed, 32 insertions, 0 deletions
diff --git a/packages/glibc/files/glibc-includes-fixed-isystem.patch b/packages/glibc/files/glibc-includes-fixed-isystem.patch
new file mode 100644
index 0000000000..06668f41ed
--- /dev/null
+++ b/packages/glibc/files/glibc-includes-fixed-isystem.patch
@@ -0,0 +1,32 @@
+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: configure.in
+===================================================================
+--- /tmp/configure.in 2008-04-05 19:20:52.176759390 +0200
++++ glibc-2.6.1/configure.in 2008-04-05 19:21:26.663424600 +0200
+@@ -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` &&