summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjoseph <joseph@7b3dc134-2b1b-0410-93df-9e9f96275f8d>2007-02-28 01:11:23 +0000
committerjoseph <joseph@7b3dc134-2b1b-0410-93df-9e9f96275f8d>2007-02-28 01:11:23 +0000
commit2d9d0041bd59496631f727a49a885828f372d07d (patch)
tree34d7c20ba7598aa13ede9db69bd4ec76060480cd
parent8f5ed73ec6912f238dca559457c55bec8ca841fd (diff)
downloadeglibc2-2d9d0041bd59496631f727a49a885828f372d07d.tar.gz
* configure.in: Also pass -isystem option for GCC's include-fixed
directory. * configure: Regenerate. git-svn-id: svn://svn.eglibc.org/branches/eglibc-2_5@1585 7b3dc134-2b1b-0410-93df-9e9f96275f8d
-rw-r--r--libc/ChangeLog.eglibc6
-rwxr-xr-xlibc/configure2
-rw-r--r--libc/configure.in2
3 files changed, 8 insertions, 2 deletions
diff --git a/libc/ChangeLog.eglibc b/libc/ChangeLog.eglibc
index 6a3ddaded..35ec39076 100644
--- a/libc/ChangeLog.eglibc
+++ b/libc/ChangeLog.eglibc
@@ -1,3 +1,9 @@
+2007-02-27 Joseph Myers <joseph@codesourcery.com>
+
+ * configure.in: Also pass -isystem option for GCC's include-fixed
+ directory.
+ * configure: Regenerate.
+
2007-02-22 Richard Sandiford <richard@codesourcery.com>
Backport from mainline:
diff --git a/libc/configure b/libc/configure
index 5955a8916..b1d3adffc 100755
--- a/libc/configure
+++ b/libc/configure
@@ -4566,7 +4566,7 @@ echo "$as_me: WARNING:
# 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` &&
diff --git a/libc/configure.in b/libc/configure.in
index f8cc483a5..e866cac32 100644
--- a/libc/configure.in
+++ b/libc/configure.in
@@ -915,7 +915,7 @@ test -n "$aux_missing" && AC_MSG_WARN([
# 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` &&