1996-06-10 09:41:16 +00:00
|
|
|
sinclude(./aclocal.m4)dnl Autoconf lossage
|
|
|
|
GLIBC_PROVIDES dnl See aclocal.m4 in the top level source directory.
|
|
|
|
# Local configure fragment for sysdeps/unix/sysv/linux.
|
|
|
|
|
|
|
|
# On Linux, the default is to use libio instead of stdio.
|
|
|
|
test $stdio = default && stdio=libio
|
|
|
|
|
|
|
|
# Don't bother trying to generate any glue code to be compatible with the
|
|
|
|
# existing system library, because we are the only system library.
|
|
|
|
inhibit_glue=yes
|
|
|
|
|
1996-07-29 03:49:00 +00:00
|
|
|
define([LIBC_LINUX_VERSION],[2.0.10])dnl
|
1998-08-21 22:29:58 +00:00
|
|
|
if test -n "$sysheaders"; then
|
|
|
|
OLD_CFLAGS=$CFLAGS
|
|
|
|
CFLAGS="$CFLAGS $SYSINCLUDES"
|
|
|
|
fi
|
1996-07-25 22:41:27 +00:00
|
|
|
define([libc_cv_linuxVER], [libc_cv_linux]patsubst(LIBC_LINUX_VERSION,[\.]))dnl
|
|
|
|
AC_CACHE_CHECK(installed Linux kernel header files, libc_cv_linuxVER, [dnl
|
1999-05-29 22:56:42 +00:00
|
|
|
AC_EGREP_CPP([eat flaming death], [#include <linux/version.h>
|
|
|
|
#if !defined LINUX_VERSION_CODE || LINUX_VERSION_CODE < ]dnl
|
1996-07-25 22:41:27 +00:00
|
|
|
patsubst(LIBC_LINUX_VERSION,[^\([^.]*\)\.\([^.]*\)\.\([^.]*\)$],dnl
|
|
|
|
[ (\1 *65536+ \2 *256+ \3) /* \1.\2.\3 */])[
|
1996-06-10 09:41:16 +00:00
|
|
|
eat flaming death
|
|
|
|
#endif],
|
1999-05-29 22:56:42 +00:00
|
|
|
libc_cv_linuxVER='TOO OLD!',
|
|
|
|
libc_cv_linuxVER='LIBC_LINUX_VERSION or later')])
|
1996-07-25 22:41:27 +00:00
|
|
|
if test "$libc_cv_linuxVER" != 'LIBC_LINUX_VERSION or later'; then
|
|
|
|
AC_MSG_ERROR([GNU libc requires kernel header files from
|
|
|
|
Linux LIBC_LINUX_VERSION or later to be installed before configuring.
|
|
|
|
The kernel header files are found usually in /usr/include/asm and
|
|
|
|
/usr/include/linux; make sure these directories use files from
|
|
|
|
Linux LIBC_LINUX_VERSION or later. This check uses <linux/version.h>, so
|
|
|
|
make sure that file was built correctly when installing the kernel header
|
1998-08-21 22:29:58 +00:00
|
|
|
files. To use kernel headers not from /usr/include/linux, use the
|
|
|
|
configure option --with-headers.])
|
|
|
|
fi
|
1999-05-26 23:37:38 +00:00
|
|
|
|
|
|
|
# If the user gave a minimal version number test whether the available
|
|
|
|
# kernel headers are young enough.
|
|
|
|
if test -n "$minimum_kernel"; then
|
|
|
|
AC_MSG_CHECKING(for kernel header at least $minimum_kernel)
|
|
|
|
changequote(,)dnl
|
1999-05-29 22:56:42 +00:00
|
|
|
decnum=`echo "$minimum_kernel.0.0.0" | sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*/(\1 * 65536 + \2 * 256 + \3)/'`;
|
1999-05-26 23:37:38 +00:00
|
|
|
changequote([,])dnl
|
1999-05-29 22:56:42 +00:00
|
|
|
AC_EGREP_CPP([eat flaming death], [#include <linux/version.h>
|
1999-05-26 23:37:38 +00:00
|
|
|
#if LINUX_VERSION_CODE < $decnum
|
|
|
|
eat flaming death
|
1999-05-29 22:56:42 +00:00
|
|
|
#endif], libc_minimum_kernel='too old!', libc_minimum_kernel=ok)
|
|
|
|
AC_MSG_RESULT($libc_minimum_kernel)
|
|
|
|
if test "$libc_minimum_kernel" = ok; then
|
1999-05-26 23:37:38 +00:00
|
|
|
AC_DEFINE_UNQUOTED(__LINUX_KERNEL_VERSION, $decnum)
|
|
|
|
else
|
1999-05-29 22:56:42 +00:00
|
|
|
AC_MSG_ERROR([*** The available kernel headers are older than the requested
|
1999-05-26 23:37:38 +00:00
|
|
|
*** compatible kernel version])
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
1998-08-21 22:29:58 +00:00
|
|
|
if test -n "$sysheaders"; then
|
|
|
|
CFLAGS=$OLD_CFLAGS
|
1996-06-10 09:41:16 +00:00
|
|
|
fi
|
1996-12-07 03:30:25 +00:00
|
|
|
# The Linux filesystem standard prescribes where to place "essential"
|
|
|
|
# files. I.e., when the installation prefix is "/usr" we have to place
|
1996-12-20 01:39:50 +00:00
|
|
|
# shared library objects and the configuration files on the root partition
|
1996-12-07 03:30:25 +00:00
|
|
|
# in /lib and /etc.
|
|
|
|
if test "$prefix" = "/usr"; then
|
1999-05-19 15:35:26 +00:00
|
|
|
# 64bit libraries on sparc go to /lib64 and not /lib
|
|
|
|
if test "$machine" = "sparc/sparc64"; then
|
|
|
|
libc_cv_slibdir="/lib64"
|
|
|
|
if test "$libdir" = '${exec_prefix}/lib'; then
|
|
|
|
libdir='${exec_prefix}/lib64';
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
libc_cv_slibdir="/lib"
|
|
|
|
fi
|
1996-12-07 03:30:25 +00:00
|
|
|
libc_cv_sysconfdir="/etc"
|
update from main archive 970121
1997-01-21 Paul Eggert <eggert@twinsun.com>
* posix/getopt.c (_getopt_internal): Return -1, not EOF, when args
are exhausted; this is required by POSIX.2.
* catgets/gencat.c, db/makedb.c, locale/programs/locale.c,
locale/programs/localedef.c, manual/examples/subopt.c,
posix/getopt.c, posix/getopt1.c, stdio-common/bug4.c,
sunrpc/rpcinfo.c (main): Check getopt return value against -1, not EOF.
Tue Jan 21 23:10:40 1997 Ulrich Drepper <drepper@cygnus.com>
* version.h (VERSION): Bump to 1.102.
* sysdeps/unix/sysv/linux/alpha/Dist: Add kernel_sigaction.h.
* elf/Makefile: Don't use CFLAGS-dl-load.c, but instead
CPPFLAGS-dl-load.c so that dependencies can be determined correctly.
* elf/dl-load.c: Fix comment.
* time/Banner: New file.
* time/Makefile (distribute): Add Banner.
Update from ADO tzcode1997a and tzdata1997a.
* time/antarctica: Update.
* time/australia: Update.
* time/zdump.c: Update.
* time/zic.c: Update.
* time/zone.tab: Update.
Mon Jan 20 08:38:32 1997 H.J. Lu <hjl@gnu.ai.mit.edu>
* config.make.in (has-ldconfig): New variable.
* configure, configure.in (has_ldconfig): New substitute.
* sysdeps/unix/sysv/linux/configure.in (has_ldconfig): New,
check if $srcdir/elf/ldconfig.c exists.
* Makeconfig (rootsbindir): New, default as
$(exec_prefix)/sbin.
(rtld-version-installed-name): New, default as
ld-$(version).so.
* Makefile (install): Call `$(common-objpfx)elf/ldconfig -d'
only if $(cross-compiling) is no and $(build-shared) is yes.
* Makerules (make-shlib-link): New macro.
($(slibdir)/libfoo.so.$(libfoo.so-version)): Use
$(make-shlib-link) for symlink.
(install-rootsbin, install-rootsbin-nosubdir): New.
(install-no-libc.a-nosubdir): Add
install-rootsbin-nosubdir.
* Rules (others): Add $(install-rootsbin).
* config.make.in (rootsbindir): New.
* configure, configure.in (libc_cv_rootsbindir): New
substitute.
* elf/Makefile (others, install-rootsbin): New, set to
ldconfig.
(+link): New for static linking.
($(slibdir)/$(rtld-version-installed-name)): New.
($(slibdir)/$(rtld-installed-name)): Depend on
$(slibdir)/$(rtld-version-installed-name) and use
$(make-shlib-link) for symlink.
* sunrpc/xdr.c (xdr_string): Return FALSE if sp == NULL
while XDR_ENCODE.
* sysdeps/unix/sysv/linux/a.out.h: Use #include_next for
glibc internals.
* sysdeps/unix/sysv/linux/configure.in (libc_cv_rootsbindir):
New, set to "/sbin" if "$prefix" == "/usr".
Tue Jan 21 13:38:39 1997 Ulrich Drepper <drepper@cygnus.com>
* Makefile (distribute): Add glibcbug.in.
Reported by Philip Blundell <pjb27@cam.ac.uk>.
* elf/Makefile ($(objpfx)trusted-dirs.h): Create elf/ subdir in
build directory if necessary.
Reported by marcus@shannon.sysc.pdx.edu (Marcus G. Daniels).
1997-01-22 05:26:05 +00:00
|
|
|
libc_cv_rootsbindir="/sbin"
|
1996-12-07 03:30:25 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Under Linux the LinuxThreads and crypt add-on should be available.
|
|
|
|
case $add_ons in
|
|
|
|
# Both are available. Good.
|
1996-12-15 02:15:29 +00:00
|
|
|
*linuxthreads*crypt* | *crypt*linuxthreads*)
|
1996-12-07 03:30:25 +00:00
|
|
|
message=
|
|
|
|
;;
|
|
|
|
*linuxthreads*)
|
|
|
|
message="\
|
|
|
|
*** WARNING:
|
|
|
|
*** Are you sure you do not want to use the \`crypt' add-on?"
|
|
|
|
;;
|
1996-12-15 02:15:29 +00:00
|
|
|
*crypt*)
|
1996-12-07 03:30:25 +00:00
|
|
|
message="\
|
|
|
|
*** WARNING:
|
1996-12-15 02:15:29 +00:00
|
|
|
*** Are you sure you do not want to use the \`linuxthread' add-on?"
|
1996-12-07 03:30:25 +00:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
message="\
|
1996-12-15 02:15:29 +00:00
|
|
|
*** WARNING: Are you sure you do not want to use the \`linuxthreads'
|
1996-12-07 03:30:25 +00:00
|
|
|
*** and \`crypt' add-ons?"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
if test "$message"; then
|
|
|
|
if test $enable_sanity = yes; then
|
|
|
|
echo "\
|
1996-12-15 02:15:29 +00:00
|
|
|
*** You should not compile the GNU libc without the \`linuxthreads' and
|
1996-12-07 03:30:25 +00:00
|
|
|
*** \`crypt' add-on. Not using them risks to be incompatible with the
|
|
|
|
*** libraries of other systems. Consider getting the add-ons and restart
|
|
|
|
*** the configuration.
|
|
|
|
*** If you really mean to avoid those add-ons run configure again, now
|
|
|
|
*** using the extra parameter \`--disable-sanity-checks'."
|
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
echo "$message"
|
|
|
|
fi
|
|
|
|
fi
|
update from main archive 970121
1997-01-21 Paul Eggert <eggert@twinsun.com>
* posix/getopt.c (_getopt_internal): Return -1, not EOF, when args
are exhausted; this is required by POSIX.2.
* catgets/gencat.c, db/makedb.c, locale/programs/locale.c,
locale/programs/localedef.c, manual/examples/subopt.c,
posix/getopt.c, posix/getopt1.c, stdio-common/bug4.c,
sunrpc/rpcinfo.c (main): Check getopt return value against -1, not EOF.
Tue Jan 21 23:10:40 1997 Ulrich Drepper <drepper@cygnus.com>
* version.h (VERSION): Bump to 1.102.
* sysdeps/unix/sysv/linux/alpha/Dist: Add kernel_sigaction.h.
* elf/Makefile: Don't use CFLAGS-dl-load.c, but instead
CPPFLAGS-dl-load.c so that dependencies can be determined correctly.
* elf/dl-load.c: Fix comment.
* time/Banner: New file.
* time/Makefile (distribute): Add Banner.
Update from ADO tzcode1997a and tzdata1997a.
* time/antarctica: Update.
* time/australia: Update.
* time/zdump.c: Update.
* time/zic.c: Update.
* time/zone.tab: Update.
Mon Jan 20 08:38:32 1997 H.J. Lu <hjl@gnu.ai.mit.edu>
* config.make.in (has-ldconfig): New variable.
* configure, configure.in (has_ldconfig): New substitute.
* sysdeps/unix/sysv/linux/configure.in (has_ldconfig): New,
check if $srcdir/elf/ldconfig.c exists.
* Makeconfig (rootsbindir): New, default as
$(exec_prefix)/sbin.
(rtld-version-installed-name): New, default as
ld-$(version).so.
* Makefile (install): Call `$(common-objpfx)elf/ldconfig -d'
only if $(cross-compiling) is no and $(build-shared) is yes.
* Makerules (make-shlib-link): New macro.
($(slibdir)/libfoo.so.$(libfoo.so-version)): Use
$(make-shlib-link) for symlink.
(install-rootsbin, install-rootsbin-nosubdir): New.
(install-no-libc.a-nosubdir): Add
install-rootsbin-nosubdir.
* Rules (others): Add $(install-rootsbin).
* config.make.in (rootsbindir): New.
* configure, configure.in (libc_cv_rootsbindir): New
substitute.
* elf/Makefile (others, install-rootsbin): New, set to
ldconfig.
(+link): New for static linking.
($(slibdir)/$(rtld-version-installed-name)): New.
($(slibdir)/$(rtld-installed-name)): Depend on
$(slibdir)/$(rtld-version-installed-name) and use
$(make-shlib-link) for symlink.
* sunrpc/xdr.c (xdr_string): Return FALSE if sp == NULL
while XDR_ENCODE.
* sysdeps/unix/sysv/linux/a.out.h: Use #include_next for
glibc internals.
* sysdeps/unix/sysv/linux/configure.in (libc_cv_rootsbindir):
New, set to "/sbin" if "$prefix" == "/usr".
Tue Jan 21 13:38:39 1997 Ulrich Drepper <drepper@cygnus.com>
* Makefile (distribute): Add glibcbug.in.
Reported by Philip Blundell <pjb27@cam.ac.uk>.
* elf/Makefile ($(objpfx)trusted-dirs.h): Create elf/ subdir in
build directory if necessary.
Reported by marcus@shannon.sysc.pdx.edu (Marcus G. Daniels).
1997-01-22 05:26:05 +00:00
|
|
|
|
|
|
|
# Check whether `ldconfig' sources are available. This will go away as soon
|
|
|
|
# as ldconfig is available in GNU libc.
|
|
|
|
if test -f $srcdir/elf/ldconfig.c; then
|
|
|
|
has_ldconfig=yes
|
|
|
|
fi
|
1998-03-29 17:03:23 +00:00
|
|
|
|
|
|
|
# We need some extensions to the `ldd' script.
|
|
|
|
changequote(,)
|
|
|
|
case "$machine" in
|
1998-04-01 06:45:43 +00:00
|
|
|
i[3456]86* | m68* | sparc/sparc32)
|
1998-03-29 17:03:23 +00:00
|
|
|
ldd_rewrite_script=../sysdeps/unix/sysv/linux/ldd-rewrite.sed
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
changequote([,])
|
1998-11-28 23:37:49 +00:00
|
|
|
|
1998-12-02 13:44:40 +00:00
|
|
|
if test $host = $build; then
|
|
|
|
# If $prefix/include/{net,scsi} are symlinks, make install will
|
|
|
|
# clobber what they're linked to (probably a kernel tree).
|
|
|
|
# test -L ought to work on all Linux boxes.
|
|
|
|
if test "x$prefix" != xNONE; then
|
|
|
|
ac_prefix=$prefix
|
|
|
|
else
|
|
|
|
ac_prefix=$ac_default_prefix
|
|
|
|
fi
|
|
|
|
AC_MSG_CHECKING([for symlinks in ${ac_prefix}/include])
|
1998-12-04 20:58:15 +00:00
|
|
|
ac_message=
|
1998-12-02 13:44:40 +00:00
|
|
|
if test -L ${ac_prefix}/include/net; then
|
1998-12-04 20:58:15 +00:00
|
|
|
ac_message="$ac_message
|
|
|
|
${ac_prefix}/include/net is a symlink"
|
1998-12-02 13:44:40 +00:00
|
|
|
fi
|
|
|
|
if test -L ${ac_prefix}/include/scsi; then
|
1998-12-04 20:58:15 +00:00
|
|
|
ac_message="$ac_message
|
1998-12-02 13:44:40 +00:00
|
|
|
${ac_prefix}/include/scsi is a symlink"
|
|
|
|
fi
|
1998-12-04 20:58:15 +00:00
|
|
|
if test -n "$ac_message"; then
|
|
|
|
AC_MSG_ERROR([$ac_message
|
1998-11-28 23:37:49 +00:00
|
|
|
\`make install' will destroy the target of the link(s).
|
|
|
|
Delete the links and re-run configure, or better still, move the entire
|
1998-12-02 13:44:40 +00:00
|
|
|
${ac_prefix}/include directory out of the way.])
|
|
|
|
else
|
|
|
|
AC_MSG_RESULT(ok)
|
|
|
|
fi
|
1998-11-28 23:37:49 +00:00
|
|
|
fi
|