diff options
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/unix/sysv/linux/configure | 6 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/configure.in | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/configure b/sysdeps/unix/sysv/linux/configure index 7d7d2d1c7a..89484200ce 100644 --- a/sysdeps/unix/sysv/linux/configure +++ b/sysdeps/unix/sysv/linux/configure @@ -87,7 +87,11 @@ fi # If the user gave a minimal version number test whether the available # kernel headers are young enough. Additionally we have minimal -# kernel versions for some architectures. +# kernel versions for some architectures. If a previous configure fragment +# set arch_minimum_kernel already, let that override our defaults here. +# Note that we presume such a fragment has set libc_cv_gcc_unwind_find_fde +# if appropriate too. +test -n "$arch_minimum_kernel" || case "$machine" in alpha*) arch_minimum_kernel=2.1.100 diff --git a/sysdeps/unix/sysv/linux/configure.in b/sysdeps/unix/sysv/linux/configure.in index 818a59d2e4..f0a7fb1231 100644 --- a/sysdeps/unix/sysv/linux/configure.in +++ b/sysdeps/unix/sysv/linux/configure.in @@ -46,7 +46,11 @@ fi # If the user gave a minimal version number test whether the available # kernel headers are young enough. Additionally we have minimal -# kernel versions for some architectures. +# kernel versions for some architectures. If a previous configure fragment +# set arch_minimum_kernel already, let that override our defaults here. +# Note that we presume such a fragment has set libc_cv_gcc_unwind_find_fde +# if appropriate too. +test -n "$arch_minimum_kernel" || case "$machine" in alpha*) arch_minimum_kernel=2.1.100 |