Update.
authorUlrich Drepper <drepper@redhat.com>
Tue, 7 Apr 1998 18:05:52 +0000 (18:05 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 7 Apr 1998 18:05:52 +0000 (18:05 +0000)
1998-04-07  Ulrich Drepper  <drepper@cygnus.com>

* configure.in: Recognize --with-headers flag and determine
commandline options to be used in compilation.
* Makeconfig (+includes): Use $(sysincludes).
* config.make.in (sysincludes): Define from SYSINCLUDES.
* glibcbug.in: Use SYSINCLUDES information.
Patches by Zack Weinberg.

* sysdeps/sparc/sparc32/elf/start.S: Rewrite for __libc_start_main.
* sysdeps/sparc/sparc64/elf/start.S: Likewise.

ChangeLog
Makeconfig
config.make.in
configure.in
glibcbug.in

index c5d5f09..482260c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+1998-04-07  Ulrich Drepper  <drepper@cygnus.com>
+
+       * configure.in: Recognize --with-headers flag and determine
+       commandline options to be used in compilation.
+       * Makeconfig (+includes): Use $(sysincludes).
+       * config.make.in (sysincludes): Define from SYSINCLUDES.
+       * glibcbug.in: Use SYSINCLUDES information.
+       Patches by Zack Weinberg.
+
 1998-04-07 19:03  Zack Weinberg  <zack@rabi.phys.columbia.edu>
 
        * glibcbug.in: On linux, report version of kernel headers seen
 
        * sysdeps/generic/libc-start.c: Allow init and fini to be null.
 
-       * sysdeps/sparc/sparc32/elf.S: Rewrite for __libc_start_main.
-       * sysdeps/sparc/sparc64/elf.S: Likewise.
+       * sysdeps/sparc/sparc32/elf/start.S: Rewrite for __libc_start_main.
+       * sysdeps/sparc/sparc64/elf/start.S: Likewise.
 
 1998-04-06  Richard Henderson  <rth@cygnus.com>
 
index d38ff67..e2514d2 100644 (file)
@@ -541,7 +541,7 @@ endif       # $(+cflags) == ""
 # `+sysdep-includes' will be defined by Makerules.
 +includes = -I. $(patsubst %/,-I%,$(objpfx)) $(patsubst %/,-I%,$(..)) \
            -I$(..)include $($(stdio)-include) $(includes) \
-           $(+sysdep-includes) $(last-includes)
+           $(+sysdep-includes) $(last-includes) $(sysincludes)
 
 # Since libio has several internal header files, we use a -I instead
 # of many little headers in the include directory.
index 27d1e6e..6fc1c95 100644 (file)
@@ -26,6 +26,7 @@ config-os = @host_os@
 config-sysdirs = @sysnames@
 
 defines = @DEFINES@
+sysincludes = @SYSINCLUDES@
 
 elf = @elf@
 have-initfini = @libc_cv_have_initfini@
index 9d12825..44cde5c 100644 (file)
@@ -47,6 +47,12 @@ AC_ARG_WITH(cvs, dnl
            with_cvs=$withval, with_cvs=yes)
 AC_SUBST(with_cvs)
 
+AC_ARG_WITH(headers, dnl
+[  --with-headers=PATH     location of system headers to use
+                          [e.g. /usr/src/linux/include]
+                          [default=compiler default]],
+           sysheaders=$withval, sysheaders='')
+
 AC_ARG_ENABLE(libio, dnl
 [  --enable-libio          build in GNU libio instead of GNU stdio],
              [if test $enableval = yes; then
@@ -470,6 +476,15 @@ AC_CHECK_TOOL(AR, ar)
 AC_CHECK_TOOL(RANLIB, ranlib, :)
 AC_CHECK_TOOL(MIG, mig)
 
+# if using special system headers, find out the compiler's sekrit
+# header directory and add that to the list.  NOTE: Only does the right
+# 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"
+fi
+AC_SUBST(SYSINCLUDES)
+
 # check if ar takes S
 AC_CACHE_CHECK(for ar S, libc_cv_ar_S, [dnl
 tmpo=$$.o
index cc57040..11ac4b5 100644 (file)
@@ -11,6 +11,7 @@ ADDONS="@subdirs@"
 HOST="@host@"
 CC='@CC@'
 CFLAGS="@CFLAGS@"
+SYSINCLUDES="@SYSINCLUDES@"
 VERSIONING="@VERSIONING@"
 BUILD_STATIC="@static@"
 BUILD_SHARED="@shared@"
@@ -21,9 +22,6 @@ BUILD_BOUNDED="@bounded@"
 BUILD_STATIC_NSS="@static_nss@"
 STDIO="@stdio@"
 
-PATH=/bin:/usr/bin:/usr/local/bin:$PATH
-export PATH
-
 TEMP=`mktemp -q /tmp/glibcbugXXXXXX 2>/dev/null`
 if test $? -ne 0; then
   TEMP=/tmp/glibcbug.$$
@@ -108,9 +106,9 @@ MACHINE=`[ -f /bin/machine ] && /bin/machine`
 CCVERSION=`$CC -v 2>&1 | sed -n 's/gcc version //p'`
 
 case $HOST in *linux*)
-  KHDRS=`(echo '#include <linux/version.h>
+  KHDRS=`(echo '#include <linux/version.h>'
          echo '! UTS_RELEASE' ) |
-        $CC -E - | sed -n '/!/s/[! "]//gp'`;;
+        $CC $SYSINCLUDES -E - | sed -n '/!/s/[! "]//gp'`;;
 esac
 
 ORGANIZATION_C='<organization of PR author (multiple lines)>'