aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-12-05 00:41:57 +0000
committerUlrich Drepper <drepper@redhat.com>2000-12-05 00:41:57 +0000
commit62ab42d67da471a5502ecbe556e7f621dae360d3 (patch)
tree2ad0df6dcb656d0906bfd3f419f24cd1d948516a /configure
parent767b6275d7bf9096e3f52348401632e1e58d4896 (diff)
downloadglibc-62ab42d67da471a5502ecbe556e7f621dae360d3.tar
glibc-62ab42d67da471a5502ecbe556e7f621dae360d3.tar.gz
glibc-62ab42d67da471a5502ecbe556e7f621dae360d3.tar.bz2
glibc-62ab42d67da471a5502ecbe556e7f621dae360d3.zip
Update.
2000-12-04 H.J. Lu <hjl@gnu.org> * configure.in: Change --with-oldest-abi=ABI to --enable-oldest-abi=ABI. 2000-12-02 Bruno Haible <haible@clisp.cons.org> * stdio-common/perror.c (perror): If stderr is wide-oriented, use fwprintf instead of fprintf. 2000-12-01 H.J. Lu <hjl@gnu.org> * nss/getXXbyYY_r.c: Fix verioned symbol handling. * nss/getXXent_r.c: Likewise. * sysdeps/unix/sysv/linux/i386/chown.c: Likewise. 2000-11-30 H.J. Lu <hjl@gnu.org> * scripts/abi-versions.awk (oldest_abi): New variable. Handle the oldest ABI supported. * Makerules ($(common-objpfx)abi-versions.h): Set oldest_abi for scripts/abi-versions.awk. * configure.in: Add --with-oldest-abi=ABI. * configure: Rebuild. * config.make.in (oldest-abi): New. * config.h.in (GLIBC_OLDEST_ABI): New. * csu/version.c (banner): Support GLIBC_OLDEST_ABI.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure42
1 files changed, 21 insertions, 21 deletions
diff --git a/configure b/configure
index 8b884fe71d..309d4e2078 100755
--- a/configure
+++ b/configure
@@ -43,9 +43,6 @@ ac_help="$ac_help
[e.g. /usr/src/linux/include]
[default=compiler default]"
ac_help="$ac_help
- --with-oldest-abi=ABI the oldest ABI supported [e.g. 2.2]
- [default=glibc default]"
-ac_help="$ac_help
--enable-libio build in GNU libio instead of GNU stdio"
ac_help="$ac_help
--disable-sanity-checks really do not use threads (should not be used
@@ -62,6 +59,9 @@ ac_help="$ac_help
--disable-versioning do not include versioning information in the
library objects [default=yes if supported]"
ac_help="$ac_help
+ --enable-oldest-abi=ABI configure the oldest ABI supported [e.g. 2.2]
+ [default=glibc default]"
+ac_help="$ac_help
--enable-add-ons[=DIR1,DIR2]...
configure and build add-ons in DIR1,DIR2,...
search for add-ons if no parameter given"
@@ -721,24 +721,6 @@ else
fi
-# Check whether --with-oldest-abi or --without-oldest-abi was given.
-if test "${with_oldest_abi+set}" = set; then
- withval="$with_oldest_abi"
- oldest_abi=$withval
-else
- oldest_abi=''
-fi
-
-if test ! -z "$oldest_abi"; then
- cat >> confdefs.h <<EOF
-#define GLIBC_OLDEST_ABI "$oldest_abi"
-EOF
-
-else
- oldest_abi=default
-fi
-
-
# Check whether --enable-libio or --disable-libio was given.
if test "${enable_libio+set}" = set; then
enableval="$enable_libio"
@@ -803,6 +785,24 @@ else
fi
+# Check whether --enable-oldest-abi or --disable-oldest-abi was given.
+if test "${enable_oldest_abi+set}" = set; then
+ enableval="$enable_oldest_abi"
+ oldest_abi=$enableval
+else
+ oldest_abi=no
+fi
+
+if test "$oldest_abi" = yes || test "$oldest_abi" = no; then
+ oldest_abi=default
+else
+ cat >> confdefs.h <<EOF
+#define GLIBC_OLDEST_ABI "$oldest_abi"
+EOF
+
+fi
+
+
# Check whether --enable-add-ons or --disable-add-ons was given.
if test "${enable_add_ons+set}" = set; then
enableval="$enable_add_ons"