From: Andreas Jaeger Date: Thu, 17 Jan 2002 17:20:03 +0000 (+0000) Subject: * sysdeps/unix/sysv/linux/configure.in: Fix check for S390 and PowerPC. X-Git-Tag: cvs/glibc-2-2-5~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8881b1327620d6280706388c04282172af76b852;p=thirdparty%2Fglibc.git * sysdeps/unix/sysv/linux/configure.in: Fix check for S390 and PowerPC. --- diff --git a/sysdeps/unix/sysv/linux/configure b/sysdeps/unix/sysv/linux/configure index 79888c932e3..da71c04f9be 100644 --- a/sysdeps/unix/sysv/linux/configure +++ b/sysdeps/unix/sysv/linux/configure @@ -70,15 +70,15 @@ case "$machine" in arch_minimum_kernel=2.2.15 libc_cv_gcc_unwind_find_fde=yes ;; - powerpc) + powerpc*) libc_cv_gcc_unwind_find_fde=yes arch_minimum_kernel=2.0.10 ;; - s390) + s390/s390-32) libc_cv_gcc_unwind_find_fde=yes arch_minimum_kernel=2.2.10 ;; - s390x) + s390/s390-64) libc_cv_gcc_unwind_find_fde=yes arch_minimum_kernel=2.4.0 ;; diff --git a/sysdeps/unix/sysv/linux/configure.in b/sysdeps/unix/sysv/linux/configure.in index 40e4f76e6e6..127c5fec38e 100644 --- a/sysdeps/unix/sysv/linux/configure.in +++ b/sysdeps/unix/sysv/linux/configure.in @@ -57,15 +57,15 @@ case "$machine" in arch_minimum_kernel=2.2.15 libc_cv_gcc_unwind_find_fde=yes ;; - powerpc) + powerpc*) libc_cv_gcc_unwind_find_fde=yes arch_minimum_kernel=2.0.10 ;; - s390) + s390/s390-32) libc_cv_gcc_unwind_find_fde=yes arch_minimum_kernel=2.2.10 ;; - s390x) + s390/s390-64) libc_cv_gcc_unwind_find_fde=yes arch_minimum_kernel=2.4.0 ;;