]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
2001-12-10 Roland McGrath <roland@frob.com>
authorRoland McGrath <roland@gnu.org>
Tue, 11 Dec 2001 04:30:20 +0000 (04:30 +0000)
committerRoland McGrath <roland@gnu.org>
Tue, 11 Dec 2001 04:30:20 +0000 (04:30 +0000)
* sysdeps/mach/hurd/configure.in (libc_cv_gcc_unwind_find_fde):
Fix conditionals so this is set by default for stdio and not for libio.
* sysdeps/mach/hurd/configure: Regenerated.

sysdeps/mach/hurd/configure
sysdeps/mach/hurd/configure.in

index 6289cacda4eadef6f41d73623d159a6897c3b279..0bf301305e90443bc209c8601008c1c26c8bbde7 100755 (executable)
@@ -12,7 +12,14 @@ fi
 
 case "$machine" in
   i386*)
-    if test -z "$oldest_abi" || test "$oldest_abi" \< "2.2.5"; then
+    # With --enable-libio, the default oldest ABI is 2.5.5;
+    # without --enable-libio, the default oldest ABI is 2.0.
+    # We only need a "yes" here if the oldest ABI supported will be < 2.2.5.
+    if if test "$stdio" = libio; then
+         test "$oldest_abi" != default && test "$oldest_abi" \< "2.2.5"
+       else
+         test "$oldest_abi" = default || test "$oldest_abi" \< "2.2.5"
+       fi; then
       libc_cv_gcc_unwind_find_fde=yes
     fi
     ;;
index 06a90d27f8c074fcd1ffc021c6495364de30a64b..9d023dfe324e839f74498d34105c28f684aedc86 100644 (file)
@@ -14,7 +14,14 @@ fi
 
 case "$machine" in
   i386*)
-    if test -z "$oldest_abi" || test "$oldest_abi" \< "2.2.5"; then
+    # With --enable-libio, the default oldest ABI is 2.5.5;
+    # without --enable-libio, the default oldest ABI is 2.0.
+    # We only need a "yes" here if the oldest ABI supported will be < 2.2.5.
+    if if test "$stdio" = libio; then
+         test "$oldest_abi" != default && test "$oldest_abi" \< "2.2.5"
+       else
+         test "$oldest_abi" = default || test "$oldest_abi" \< "2.2.5"
+       fi; then
       libc_cv_gcc_unwind_find_fde=yes
     fi
     ;;