diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rwxr-xr-x | configure | 7 | ||||
-rw-r--r-- | configure.in | 7 |
3 files changed, 2 insertions, 14 deletions
@@ -2,6 +2,8 @@ * configure.in: Remove last remnants of RANLIB. No need to check for signed size_t anymore. + Don't set libc_commonpagesize and libc_relro_required here for Alpha + and IA-64. * aclocal.m4: Likewise. @@ -6250,13 +6250,6 @@ case "$base_machine" in libc_commonpagesize=0x2000 libc_relro_required=yes ;; - ia64*) - libc_commonpagesize=0x4000 - ;; - alpha*) - libc_commonpagesize=0x10000 - libc_relro_required=yes - ;; esac if test $libc_commonpagesize != no; then diff --git a/configure.in b/configure.in index a9d9502..84f059e 100644 --- a/configure.in +++ b/configure.in @@ -1498,13 +1498,6 @@ case "$base_machine" in libc_commonpagesize=0x2000 libc_relro_required=yes ;; - ia64*) - libc_commonpagesize=0x4000 - ;; - alpha*) - libc_commonpagesize=0x10000 - libc_relro_required=yes - ;; esac if test $libc_commonpagesize != no; then |