From: Ulrich Drepper Date: Sat, 13 Nov 1999 05:14:32 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/pre-glibc-2_1_3~198 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=269e369fa69775f05136a0a4b729d4491b66ea0a;p=thirdparty%2Fglibc.git Update. 1999-11-12 Ulrich Drepper * configure.in: Allow user so specify --enable-kernel=current. --- diff --git a/ChangeLog b/ChangeLog index 54a5646ee6b..1d0ce6e433b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +1999-11-12 Ulrich Drepper + + * configure.in: Allow user so specify --enable-kernel=current. + 1999-11-12 Thorsten Kukuk * nis/nss_nisplus/nisplus-publickey.c: Check for snprintf return value. diff --git a/configure.in b/configure.in index 05c61cd9c1f..cf18953f10b 100644 --- a/configure.in +++ b/configure.in @@ -178,6 +178,10 @@ dnl Prevent unreasonable values. if test "$minimum_kernel" = yes || test "$minimum_kernel" = no; then # Better nothing than this. minimum_kernel="" +else + if test "$minimum_kernel" = current; then + minimum_kernel=`uname -r 2>/dev/null` || minimum_kernel= + fi fi AC_CANONICAL_HOST