From: Roland McGrath Date: Thu, 16 Sep 2004 23:22:05 +0000 (+0000) Subject: 2004-09-16 Roland McGrath X-Git-Tag: upstream/2.30~17513 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3d6ce23a90fea094d77b5e2f5574d10e5ecb9d61;p=external%2Fglibc.git 2004-09-16 Roland McGrath * configure.in (--with-headers): Let argument contain a : separated list of directories to use, not just one. * configure: Regenerated. --- diff --git a/configure b/configure index a7a2acf..ad34c57 100755 --- a/configure +++ b/configure @@ -4429,7 +4429,8 @@ 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 -isystem $sysheaders" + SYSINCLUDES="-nostdinc -isystem $ccheaders \ +-isystem `echo $sysheaders | sed 's/:/ -isystem /g'`" fi diff --git a/configure.in b/configure.in index 665786e..22f726e 100644 --- a/configure.in +++ b/configure.in @@ -799,7 +799,8 @@ 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 -isystem $sysheaders" + SYSINCLUDES="-nostdinc -isystem $ccheaders \ +-isystem `echo $sysheaders | sed 's/:/ -isystem /g'`" fi AC_SUBST(SYSINCLUDES)