mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 13:00:06 +00:00
2001-12-10 Roland McGrath <roland@frob.com>
* 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.
This commit is contained in:
parent
1b11359804
commit
e3261c59dd
9
sysdeps/mach/hurd/configure
vendored
9
sysdeps/mach/hurd/configure
vendored
@ -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
|
||||
;;
|
||||
|
@ -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
|
||||
;;
|
||||
|
Loading…
Reference in New Issue
Block a user