mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-08 17:42:12 +03:00
Mon Jul 29 01:27:07 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* sunrpc/rpc/rpc_msg.h: Fix botched patch for multiple inclusion protection. * configure.in: Grok `--enable-add-ons=DIR1,DIR2,...', and configure in those directories. * config.make.in (add-ons): New varaible, set from @subdirs@. * Makefile (subdirs): Added $(add-ons) at the end.
This commit is contained in:
10
ChangeLog
10
ChangeLog
@@ -1,5 +1,15 @@
|
|||||||
|
Mon Jul 29 01:27:07 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
|
||||||
|
|
||||||
|
* sunrpc/rpc/rpc_msg.h: Fix botched patch for multiple inclusion
|
||||||
|
protection.
|
||||||
|
|
||||||
Sun Jul 28 23:46:14 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
|
Sun Jul 28 23:46:14 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
|
||||||
|
|
||||||
|
* configure.in: Grok `--enable-add-ons=DIR1,DIR2,...', and configure
|
||||||
|
in those directories.
|
||||||
|
* config.make.in (add-ons): New varaible, set from @subdirs@.
|
||||||
|
* Makefile (subdirs): Added $(add-ons) at the end.
|
||||||
|
|
||||||
* time/strftime.c (strftime: do_number): Initialize PRINTED to
|
* time/strftime.c (strftime: do_number): Initialize PRINTED to
|
||||||
MAXDIGITS in case P is null and so sprintf is never actually called.
|
MAXDIGITS in case P is null and so sprintf is never actually called.
|
||||||
|
|
||||||
|
2
Makefile
2
Makefile
@@ -54,7 +54,7 @@ endif
|
|||||||
subdirs = csu assert ctype db locale intl catgets math setjmp signal stdlib \
|
subdirs = csu assert ctype db locale intl catgets math setjmp signal stdlib \
|
||||||
stdio-common $(stdio) malloc string wcsmbs time dirent grp pwd\
|
stdio-common $(stdio) malloc string wcsmbs time dirent grp pwd\
|
||||||
posix io termios resource misc login socket sysvipc gmon gnulib \
|
posix io termios resource misc login socket sysvipc gmon gnulib \
|
||||||
wctype manual $(sysdep-subdirs) nss elf po
|
wctype manual $(sysdep-subdirs) nss elf po $(add-ons)
|
||||||
export subdirs := $(subdirs) # Benign, useless in GNU make before 3.63.
|
export subdirs := $(subdirs) # Benign, useless in GNU make before 3.63.
|
||||||
|
|
||||||
# The mach and hurd subdirectories have many generated header files which
|
# The mach and hurd subdirectories have many generated header files which
|
||||||
|
@@ -27,6 +27,7 @@ build-shared = @shared@
|
|||||||
build-profile = @profile@
|
build-profile = @profile@
|
||||||
build-omitfp = @omitfp@
|
build-omitfp = @omitfp@
|
||||||
stdio = @stdio@
|
stdio = @stdio@
|
||||||
|
add-ons = @subdirs@
|
||||||
|
|
||||||
# Build tools.
|
# Build tools.
|
||||||
CC = @CC@
|
CC = @CC@
|
||||||
|
132
configure
vendored
132
configure
vendored
@@ -34,6 +34,8 @@ ac_help="$ac_help
|
|||||||
--enable-profile build profiled library [default=yes]"
|
--enable-profile build profiled library [default=yes]"
|
||||||
ac_help="$ac_help
|
ac_help="$ac_help
|
||||||
--enable-omitfp build undebuggable optimized library [default=no]"
|
--enable-omitfp build undebuggable optimized library [default=no]"
|
||||||
|
ac_help="$ac_help
|
||||||
|
--enable-add-ons=DIR... configure and build named extra directories"
|
||||||
|
|
||||||
# Initialize some variables set by options.
|
# Initialize some variables set by options.
|
||||||
# The variables have the same names as the options, with
|
# The variables have the same names as the options, with
|
||||||
@@ -657,6 +659,14 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Check whether --enable-add-ons or --disable-add-ons was given.
|
||||||
|
if test "${enable_add_ons+set}" = set; then
|
||||||
|
enableval="$enable_add_ons"
|
||||||
|
add_ons=`echo "$enableval" | sed 's/
|
||||||
|
else
|
||||||
|
/ /g'`
|
||||||
|
fi
|
||||||
|
|
||||||
ac_aux_dir=
|
ac_aux_dir=
|
||||||
for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do
|
for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do
|
||||||
if test -f $ac_dir/install-sh; then
|
if test -f $ac_dir/install-sh; then
|
||||||
@@ -676,6 +686,9 @@ ac_config_guess=$ac_aux_dir/config.guess
|
|||||||
ac_config_sub=$ac_aux_dir/config.sub
|
ac_config_sub=$ac_aux_dir/config.sub
|
||||||
ac_configure=$ac_aux_dir/configure # This should be Cygnus configure.
|
ac_configure=$ac_aux_dir/configure # This should be Cygnus configure.
|
||||||
|
|
||||||
|
subdirs="$add_ons"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Make sure we can run config.sub.
|
# Make sure we can run config.sub.
|
||||||
if $ac_config_sub sun4 >/dev/null 2>&1; then :
|
if $ac_config_sub sun4 >/dev/null 2>&1; then :
|
||||||
@@ -1121,13 +1134,13 @@ else
|
|||||||
# On the NeXT, cc -E runs the code through the compiler's parser,
|
# On the NeXT, cc -E runs the code through the compiler's parser,
|
||||||
# not just through cpp.
|
# not just through cpp.
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 1125 "configure"
|
#line 1138 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
Syntax Error
|
Syntax Error
|
||||||
EOF
|
EOF
|
||||||
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
|
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
|
||||||
{ (eval echo configure:1131: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
{ (eval echo configure:1144: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
||||||
ac_err=`grep -v '^ *+' conftest.out`
|
ac_err=`grep -v '^ *+' conftest.out`
|
||||||
if test -z "$ac_err"; then
|
if test -z "$ac_err"; then
|
||||||
:
|
:
|
||||||
@@ -1136,13 +1149,13 @@ else
|
|||||||
rm -rf conftest*
|
rm -rf conftest*
|
||||||
CPP="${CC-cc} -E -traditional-cpp"
|
CPP="${CC-cc} -E -traditional-cpp"
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 1140 "configure"
|
#line 1153 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
Syntax Error
|
Syntax Error
|
||||||
EOF
|
EOF
|
||||||
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
|
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
|
||||||
{ (eval echo configure:1146: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
{ (eval echo configure:1159: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
||||||
ac_err=`grep -v '^ *+' conftest.out`
|
ac_err=`grep -v '^ *+' conftest.out`
|
||||||
if test -z "$ac_err"; then
|
if test -z "$ac_err"; then
|
||||||
:
|
:
|
||||||
@@ -1284,7 +1297,7 @@ if eval "test \"`echo '$''{'libc_cv_friendly_stddef'+set}'`\" = set"; then
|
|||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
else
|
else
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 1288 "configure"
|
#line 1301 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
#define __need_size_t
|
#define __need_size_t
|
||||||
#define __need_wchar_t
|
#define __need_wchar_t
|
||||||
@@ -1300,7 +1313,7 @@ size_t size; wchar_t wchar;
|
|||||||
if (&size == NULL || &wchar == NULL) abort ();
|
if (&size == NULL || &wchar == NULL) abort ();
|
||||||
; return 0; }
|
; return 0; }
|
||||||
EOF
|
EOF
|
||||||
if { (eval echo configure:1304: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
if { (eval echo configure:1317: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
||||||
rm -rf conftest*
|
rm -rf conftest*
|
||||||
libc_cv_friendly_stddef=yes
|
libc_cv_friendly_stddef=yes
|
||||||
else
|
else
|
||||||
@@ -1407,7 +1420,7 @@ if eval "test \"`echo '$''{'libc_cv_have_initfini'+set}'`\" = set"; then
|
|||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
else
|
else
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 1411 "configure"
|
#line 1424 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
int main() { return 0; }
|
int main() { return 0; }
|
||||||
@@ -1417,7 +1430,7 @@ asm (".section .init");
|
|||||||
asm (".text");
|
asm (".text");
|
||||||
; return 0; }
|
; return 0; }
|
||||||
EOF
|
EOF
|
||||||
if { (eval echo configure:1421: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
if { (eval echo configure:1434: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
||||||
rm -rf conftest*
|
rm -rf conftest*
|
||||||
libc_cv_have_initfini=yes
|
libc_cv_have_initfini=yes
|
||||||
else
|
else
|
||||||
@@ -1445,7 +1458,7 @@ if eval "test \"`echo '$''{'libc_cv_asm_underscores'+set}'`\" = set"; then
|
|||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
else
|
else
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 1449 "configure"
|
#line 1462 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
asm ("_glibc_foobar:");
|
asm ("_glibc_foobar:");
|
||||||
int main() { return 0; }
|
int main() { return 0; }
|
||||||
@@ -1453,7 +1466,7 @@ int t() {
|
|||||||
glibc_foobar ();
|
glibc_foobar ();
|
||||||
; return 0; }
|
; return 0; }
|
||||||
EOF
|
EOF
|
||||||
if { (eval echo configure:1457: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then
|
if { (eval echo configure:1470: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then
|
||||||
rm -rf conftest*
|
rm -rf conftest*
|
||||||
libc_cv_asm_underscores=yes
|
libc_cv_asm_underscores=yes
|
||||||
else
|
else
|
||||||
@@ -1545,7 +1558,7 @@ _start () {}
|
|||||||
EOF
|
EOF
|
||||||
if { ac_try='${CC-cc} $CFLAGS
|
if { ac_try='${CC-cc} $CFLAGS
|
||||||
-nostdlib -nostartfiles -Wl,--no-whole-archive
|
-nostdlib -nostartfiles -Wl,--no-whole-archive
|
||||||
-o conftest conftest.c'; { (eval echo configure:1549: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; }; then
|
-o conftest conftest.c'; { (eval echo configure:1562: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; }; then
|
||||||
libc_cv_ld_no_whole_archive=yes
|
libc_cv_ld_no_whole_archive=yes
|
||||||
else
|
else
|
||||||
libc_cv_ld_no_whole_archive=no
|
libc_cv_ld_no_whole_archive=no
|
||||||
@@ -1797,6 +1810,7 @@ s%@includedir@%$includedir%g
|
|||||||
s%@oldincludedir@%$oldincludedir%g
|
s%@oldincludedir@%$oldincludedir%g
|
||||||
s%@infodir@%$infodir%g
|
s%@infodir@%$infodir%g
|
||||||
s%@mandir@%$mandir%g
|
s%@mandir@%$mandir%g
|
||||||
|
s%@subdirs@%$subdirs%g
|
||||||
s%@host@%$host%g
|
s%@host@%$host%g
|
||||||
s%@host_alias@%$host_alias%g
|
s%@host_alias@%$host_alias%g
|
||||||
s%@host_cpu@%$host_cpu%g
|
s%@host_cpu@%$host_cpu%g
|
||||||
@@ -2050,3 +2064,99 @@ chmod +x $CONFIG_STATUS
|
|||||||
rm -fr confdefs* $ac_clean_files
|
rm -fr confdefs* $ac_clean_files
|
||||||
test "$no_create" = yes || ${CONFIG_SHELL-/bin/sh} $CONFIG_STATUS || exit 1
|
test "$no_create" = yes || ${CONFIG_SHELL-/bin/sh} $CONFIG_STATUS || exit 1
|
||||||
|
|
||||||
|
if test "$no_recursion" != yes; then
|
||||||
|
|
||||||
|
# Remove --cache-file and --srcdir arguments so they do not pile up.
|
||||||
|
ac_sub_configure_args=
|
||||||
|
ac_prev=
|
||||||
|
for ac_arg in $ac_configure_args; do
|
||||||
|
if test -n "$ac_prev"; then
|
||||||
|
ac_prev=
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
case "$ac_arg" in
|
||||||
|
-cache-file | --cache-file | --cache-fil | --cache-fi \
|
||||||
|
| --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
|
||||||
|
ac_prev=cache_file ;;
|
||||||
|
-cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
|
||||||
|
| --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
|
||||||
|
;;
|
||||||
|
-srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
|
||||||
|
ac_prev=srcdir ;;
|
||||||
|
-srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
|
||||||
|
;;
|
||||||
|
*) ac_sub_configure_args="$ac_sub_configure_args $ac_arg" ;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
for ac_config_dir in $add_ons; do
|
||||||
|
|
||||||
|
# Do not complain, so a configure script can configure whichever
|
||||||
|
# parts of a large source tree are present.
|
||||||
|
if test ! -d $srcdir/$ac_config_dir; then
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo configuring in $ac_config_dir
|
||||||
|
|
||||||
|
case "$srcdir" in
|
||||||
|
.) ;;
|
||||||
|
*)
|
||||||
|
if test -d ./$ac_config_dir || mkdir ./$ac_config_dir; then :;
|
||||||
|
else
|
||||||
|
{ echo "configure: error: can not create `pwd`/$ac_config_dir" 1>&2; exit 1; }
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
ac_popdir=`pwd`
|
||||||
|
cd $ac_config_dir
|
||||||
|
|
||||||
|
case "$srcdir" in
|
||||||
|
.) # No --srcdir option. We are building in place.
|
||||||
|
ac_sub_srcdir=$srcdir ;;
|
||||||
|
/*) # Absolute path.
|
||||||
|
ac_sub_srcdir=$srcdir/$ac_config_dir ;;
|
||||||
|
*) # Relative path.
|
||||||
|
ac_sub_srcdir=../$srcdir/$ac_config_dir ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# Check for guested configure; otherwise get Cygnus style configure.
|
||||||
|
if test -f $ac_sub_srcdir/configure; then
|
||||||
|
ac_sub_configure=$ac_sub_srcdir/configure
|
||||||
|
elif test -f $ac_sub_srcdir/configure.in; then
|
||||||
|
ac_sub_configure=$ac_configure
|
||||||
|
else
|
||||||
|
echo "configure: warning: no configuration information is in $ac_config_dir" 1>&2
|
||||||
|
ac_sub_configure=
|
||||||
|
fi
|
||||||
|
|
||||||
|
# The recursion is here.
|
||||||
|
if test -n "$ac_sub_configure"; then
|
||||||
|
|
||||||
|
# Make the cache file name correct relative to the subdirectory.
|
||||||
|
# A "../" for each directory in /$ac_config_dir.
|
||||||
|
ac_dots=`echo $ac_config_dir|sed -e 's%^\./%%' -e 's%[^/]$%&/%' -e 's%[^/]*/%../%g'`
|
||||||
|
case "$cache_file" in
|
||||||
|
/*) ac_sub_cache_file=$cache_file ;;
|
||||||
|
*) # Relative path.
|
||||||
|
ac_sub_cache_file="$ac_dots$cache_file" ;;
|
||||||
|
esac
|
||||||
|
case "$ac_given_INSTALL" in
|
||||||
|
[/$]*) INSTALL="$ac_given_INSTALL" ;;
|
||||||
|
*) INSTALL="$ac_dots$ac_given_INSTALL" ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
echo "running ${CONFIG_SHELL-/bin/sh} $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_sub_srcdir"
|
||||||
|
# The eval makes quoting arguments work.
|
||||||
|
if eval ${CONFIG_SHELL-/bin/sh} $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_sub_srcdir
|
||||||
|
then :
|
||||||
|
else
|
||||||
|
{ echo "configure: error: $ac_sub_configure failed for $ac_config_dir" 1>&2; exit 1; }
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
cd $ac_popdir
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
|
@@ -71,6 +71,13 @@ AC_ARG_ENABLE(omitfp, dnl
|
|||||||
[ --enable-omitfp build undebuggable optimized library [default=no]],
|
[ --enable-omitfp build undebuggable optimized library [default=no]],
|
||||||
omitfp=$enableval, omitfp=no)
|
omitfp=$enableval, omitfp=no)
|
||||||
|
|
||||||
|
dnl Generic infrastructure for drop-in additions to libc.
|
||||||
|
AC_ARG_ENABLE(add-ons, dnl
|
||||||
|
[ --enable-add-ons=DIR... configure and build named extra directories],
|
||||||
|
add_ons=`echo "$enableval" | sed 's/,/ /g'`,
|
||||||
|
add_ons=)
|
||||||
|
AC_CONFIG_SUBDIRS($add_ons)
|
||||||
|
|
||||||
AC_CANONICAL_HOST
|
AC_CANONICAL_HOST
|
||||||
# We keep the original values in `$config_*' and never modify them, so we
|
# We keep the original values in `$config_*' and never modify them, so we
|
||||||
# can write them unchanged into config.make. Everything else uses
|
# can write them unchanged into config.make. Everything else uses
|
||||||
|
@@ -29,6 +29,10 @@
|
|||||||
*/
|
*/
|
||||||
/* @(#)rpc_msg.h 1.7 86/07/16 SMI */
|
/* @(#)rpc_msg.h 1.7 86/07/16 SMI */
|
||||||
|
|
||||||
|
#ifndef _RPC_MSG_H
|
||||||
|
#define _RPC_MSG_H 1
|
||||||
|
#include <sys/cdefs.h>
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* rpc_msg.h
|
* rpc_msg.h
|
||||||
* rpc message definition
|
* rpc message definition
|
||||||
|
16
sysdeps/unix/sysv/linux/configure
vendored
16
sysdeps/unix/sysv/linux/configure
vendored
@@ -8,7 +8,7 @@ test $stdio = default && stdio=libio
|
|||||||
inhibit_glue=yes
|
inhibit_glue=yes
|
||||||
|
|
||||||
echo $ac_n "checking installed Linux kernel header files""... $ac_c" 1>&6
|
echo $ac_n "checking installed Linux kernel header files""... $ac_c" 1>&6
|
||||||
if eval "test \"`echo '$''{'libc_cv_linux203'+set}'`\" = set"; then
|
if eval "test \"`echo '$''{'libc_cv_linux2010'+set}'`\" = set"; then
|
||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
else
|
else
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
@@ -17,29 +17,29 @@ else
|
|||||||
#include <linux/version.h>
|
#include <linux/version.h>
|
||||||
int main() { return 0; }
|
int main() { return 0; }
|
||||||
int t() {
|
int t() {
|
||||||
#if LINUX_VERSION_CODE < (2 *65536+ 0 *256+ 3) /* 2.0.3 */
|
#if LINUX_VERSION_CODE < (2 *65536+ 0 *256+ 10) /* 2.0.10 */
|
||||||
eat flaming death
|
eat flaming death
|
||||||
#endif
|
#endif
|
||||||
; return 0; }
|
; return 0; }
|
||||||
EOF
|
EOF
|
||||||
if { (eval echo configure:26: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
if { (eval echo configure:26: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
||||||
rm -rf conftest*
|
rm -rf conftest*
|
||||||
libc_cv_linux203='2.0.3 or later'
|
libc_cv_linux2010='2.0.10 or later'
|
||||||
else
|
else
|
||||||
rm -rf conftest*
|
rm -rf conftest*
|
||||||
libc_cv_linux203='TOO OLD!'
|
libc_cv_linux2010='TOO OLD!'
|
||||||
fi
|
fi
|
||||||
rm -f conftest*
|
rm -f conftest*
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "$ac_t""$libc_cv_linux203" 1>&6
|
echo "$ac_t""$libc_cv_linux2010" 1>&6
|
||||||
if test "$libc_cv_linux203" != '2.0.3 or later'; then
|
if test "$libc_cv_linux2010" != '2.0.10 or later'; then
|
||||||
{ echo "configure: error: GNU libc requires kernel header files from
|
{ echo "configure: error: GNU libc requires kernel header files from
|
||||||
Linux 2.0.3 or later to be installed before configuring.
|
Linux 2.0.10 or later to be installed before configuring.
|
||||||
The kernel header files are found usually in /usr/include/asm and
|
The kernel header files are found usually in /usr/include/asm and
|
||||||
/usr/include/linux; make sure these directories use files from
|
/usr/include/linux; make sure these directories use files from
|
||||||
Linux 2.0.3 or later. This check uses <linux/version.h>, so
|
Linux 2.0.10 or later. This check uses <linux/version.h>, so
|
||||||
make sure that file was built correctly when installing the kernel header
|
make sure that file was built correctly when installing the kernel header
|
||||||
files." 1>&2; exit 1; }
|
files." 1>&2; exit 1; }
|
||||||
fi
|
fi
|
||||||
|
Reference in New Issue
Block a user