diff options
author | Roland McGrath <roland@redhat.com> | 2009-09-15 14:14:42 -0700 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 2009-09-15 14:14:42 -0700 |
commit | 7967983fd42380b090a63b53fe57a05e1d1c0b4f (patch) | |
tree | 8a0f7e2aa9f450115c862c1ccc0c036c05046cfc /sysdeps/powerpc/powerpc32/configure | |
parent | 02bf610ca82f4b5660dadcfff04124e73f8ef2ff (diff) | |
download | glibc-7967983fd42380b090a63b53fe57a05e1d1c0b4f.tar.gz glibc-7967983fd42380b090a63b53fe57a05e1d1c0b4f.tar.xz glibc-7967983fd42380b090a63b53fe57a05e1d1c0b4f.zip |
configure tweaks, support $libc_add_on_config_subdirs
Diffstat (limited to 'sysdeps/powerpc/powerpc32/configure')
-rw-r--r-- | sysdeps/powerpc/powerpc32/configure | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/sysdeps/powerpc/powerpc32/configure b/sysdeps/powerpc/powerpc32/configure index 0ff56c936a..9b76c57886 100644 --- a/sysdeps/powerpc/powerpc32/configure +++ b/sysdeps/powerpc/powerpc32/configure @@ -2,10 +2,10 @@ # Local configure fragment for sysdeps/powerpc/powerpc32. # See whether gas has R_PPC_REL16 relocs. -echo "$as_me:$LINENO: checking for R_PPC_REL16 gas support" >&5 -echo $ECHO_N "checking for R_PPC_REL16 gas support... $ECHO_C" >&6 +{ $as_echo "$as_me:$LINENO: checking for R_PPC_REL16 gas support" >&5 +$as_echo_n "checking for R_PPC_REL16 gas support... " >&6; } if test "${libc_cv_ppc_rel16+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 + $as_echo_n "(cached) " >&6 else cat > conftest.s <<\EOF .text @@ -15,7 +15,7 @@ if { ac_try='${CC-cc} -c $CFLAGS conftest.s 1>&5' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 + $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then libc_cv_ppc_rel16=yes else @@ -23,8 +23,8 @@ else fi rm -f conftest* fi -echo "$as_me:$LINENO: result: $libc_cv_ppc_rel16" >&5 -echo "${ECHO_T}$libc_cv_ppc_rel16" >&6 +{ $as_echo "$as_me:$LINENO: result: $libc_cv_ppc_rel16" >&5 +$as_echo "$libc_cv_ppc_rel16" >&6; } if test $libc_cv_ppc_rel16 = yes; then cat >>confdefs.h <<\_ACEOF #define HAVE_ASM_PPC_REL16 1 @@ -33,10 +33,10 @@ _ACEOF fi # See whether GCC uses -msecure-plt. -echo "$as_me:$LINENO: checking for -msecure-plt by default" >&5 -echo $ECHO_N "checking for -msecure-plt by default... $ECHO_C" >&6 +{ $as_echo "$as_me:$LINENO: checking for -msecure-plt by default" >&5 +$as_echo_n "checking for -msecure-plt by default... " >&6; } if test "${libc_cv_ppc_secure_plt+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 + $as_echo_n "(cached) " >&6 else echo 'int foo (void) { extern int bar; return bar; }' > conftest.c libc_cv_ppc_secure_plt=no @@ -44,7 +44,7 @@ if { ac_try='${CC-cc} -S $CFLAGS conftest.c -fpic -o conftest.s 1>&5' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 + $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then if grep '_GLOBAL_OFFSET_TABLE_-.*@ha' conftest.s > /dev/null 2>&1; then libc_cv_ppc_secure_plt=yes @@ -52,8 +52,8 @@ if { ac_try='${CC-cc} -S $CFLAGS conftest.c -fpic -o conftest.s 1>&5' fi rm -rf conftest* fi -echo "$as_me:$LINENO: result: $libc_cv_ppc_secure_plt" >&5 -echo "${ECHO_T}$libc_cv_ppc_secure_plt" >&6 +{ $as_echo "$as_me:$LINENO: result: $libc_cv_ppc_secure_plt" >&5 +$as_echo "$libc_cv_ppc_secure_plt" >&6; } if test $libc_cv_ppc_secure_plt = yes; then cat >>confdefs.h <<\_ACEOF #define HAVE_PPC_SECURE_PLT 1 |