diff options
Diffstat (limited to 'sysdeps/i386/elf/configure')
-rwxr-xr-x | sysdeps/i386/elf/configure | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sysdeps/i386/elf/configure b/sysdeps/i386/elf/configure index ca7f567bcb..1033f78ef3 100755 --- a/sysdeps/i386/elf/configure +++ b/sysdeps/i386/elf/configure @@ -1,9 +1,10 @@ # Local configure fragment for sysdeps/unix/sysv/linux. +if test "$usetls" != no; then # Check for support of thread-local storage handling in assembler and # linker. echo $ac_n "checking for i386 TLS support""... $ac_c" 1>&6 -echo "configure:7: checking for i386 TLS support" >&5 +echo "configure:8: checking for i386 TLS support" >&5 if eval "test \"`echo '$''{'libc_cv_386_tls'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -20,7 +21,7 @@ baz: leal bar@TLSLDM(%ebx), %eax subl foo@GOTTPOFF(%edx), %eax subl $bar@TPOFF, %eax EOF -if { ac_try='${CC-cc} -c $CFLAGS conftest.s 1>&5'; { (eval echo configure:24: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; }; then +if { ac_try='${CC-cc} -c $CFLAGS conftest.s 1>&5'; { (eval echo configure:25: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; }; then libc_cv_386_tls=yes else libc_cv_386_tls=no @@ -35,3 +36,4 @@ if test $libc_cv_386_tls = yes; then EOF fi +fi |