From 4da0431d5f4d9c88d476d1209849ff5344345021 Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Wed, 30 May 2012 09:50:40 +0000 Subject: [PATCH] Weaken PIE configure test to a compile test. --- ChangeLog | 6 ++++++ configure | 12 +++--------- configure.in | 14 ++------------ 3 files changed, 11 insertions(+), 21 deletions(-) diff --git a/ChangeLog b/ChangeLog index ee68357..bc1401b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2012-05-30 Joseph Myers + + * configure.in (libc_cv_fpie): Weaken to a compile test using + LIBC_TRY_CC_OPTION. + * configure: Regenerated. + 2012-05-29 Andreas Krebbel * sysdeps/unix/sysv/linux/s390/s390-32/nptl/ld.abilist: Refreshed. diff --git a/configure b/configure index c92d4a5..4d5d9e4 100755 --- a/configure +++ b/configure @@ -6490,23 +6490,17 @@ $as_echo_n "checking for -fpie... " >&6; } if ${libc_cv_fpie+:} false; then : $as_echo_n "(cached) " >&6 else - cat > conftest.c <&5 (eval $ac_try) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; } -then + test $ac_status = 0; }; }; then : libc_cv_fpie=yes else libc_cv_fpie=no fi -rm -f conftest* + fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $libc_cv_fpie" >&5 $as_echo "$libc_cv_fpie" >&6; } diff --git a/configure.in b/configure.in index 6fac085..81b14c9 100644 --- a/configure.in +++ b/configure.in @@ -1618,18 +1618,8 @@ rm -f conftest*]) AC_SUBST(libc_cv_z_execstack) AC_CACHE_CHECK(for -fpie, libc_cv_fpie, [dnl -cat > conftest.c <&AS_MESSAGE_LOG_FD]) -then - libc_cv_fpie=yes -else - libc_cv_fpie=no -fi -rm -f conftest*]) +LIBC_TRY_CC_OPTION([-fpie], [libc_cv_fpie=yes], [libc_cv_fpie=no]) +]) AC_SUBST(libc_cv_fpie) -- 2.7.4