diff options
author | Andreas Jaeger <aj@suse.de> | 2002-01-17 17:22:51 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2002-01-17 17:22:51 +0000 |
commit | dffd10032d4cad723b9ff000e8f70143546979ac (patch) | |
tree | 58fd95b72a0f425107e43376e2866417f0c2f05f /sysdeps/unix/sysv/linux/configure.in | |
parent | 0308a4751c79429781f9441c771fe3024c2ac5ec (diff) | |
download | glibc-dffd10032d4cad723b9ff000e8f70143546979ac.tar glibc-dffd10032d4cad723b9ff000e8f70143546979ac.tar.gz glibc-dffd10032d4cad723b9ff000e8f70143546979ac.tar.bz2 glibc-dffd10032d4cad723b9ff000e8f70143546979ac.zip |
* sysdeps/unix/sysv/linux/configure.in: Fix check for S390 and
PowerPC, sync with 2.2 branch.
Diffstat (limited to 'sysdeps/unix/sysv/linux/configure.in')
-rw-r--r-- | sysdeps/unix/sysv/linux/configure.in | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/configure.in b/sysdeps/unix/sysv/linux/configure.in index 709d8e913f..127c5fec38 100644 --- a/sysdeps/unix/sysv/linux/configure.in +++ b/sysdeps/unix/sysv/linux/configure.in @@ -57,10 +57,18 @@ 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-32) + libc_cv_gcc_unwind_find_fde=yes + arch_minimum_kernel=2.2.10 + ;; + s390/s390-64) + libc_cv_gcc_unwind_find_fde=yes + arch_minimum_kernel=2.4.0 + ;; sh*) arch_minimum_kernel=2.3.99 libc_cv_gcc_unwind_find_fde=yes |