diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-02-07 06:38:57 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-02-07 06:38:57 +0000 |
commit | 8d4b5a8a50fad0ed1005380aa8d1c13dcfdab08d (patch) | |
tree | 4a12090365248eea8757bad604a6f7082784c8cc /sysdeps/i386/elf/configure.in | |
parent | 4b9abcb6b83ebc64aa2a468b950c24e4ee96e1a2 (diff) | |
download | glibc-8d4b5a8a50fad0ed1005380aa8d1c13dcfdab08d.zip glibc-8d4b5a8a50fad0ed1005380aa8d1c13dcfdab08d.tar.gz glibc-8d4b5a8a50fad0ed1005380aa8d1c13dcfdab08d.tar.bz2 |
Update.
2002-02-06 Ulrich Drepper <drepper@redhat.com>
* configure.in: Add --without-tls option.
* sysdeps/i386/elf/configure.in: Don't check for TLS support if
--without-tls is given.
* sysdeps/generic/dl-tls.c: Include <tls.h>.
* sysdeps/i386/dl-tls.h: Don't define anything if !USE_TLS.
Diffstat (limited to 'sysdeps/i386/elf/configure.in')
-rw-r--r-- | sysdeps/i386/elf/configure.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sysdeps/i386/elf/configure.in b/sysdeps/i386/elf/configure.in index 6352e69..96e9b2c 100644 --- a/sysdeps/i386/elf/configure.in +++ b/sysdeps/i386/elf/configure.in @@ -2,6 +2,7 @@ sinclude(./aclocal.m4)dnl Autoconf lossage GLIBC_PROVIDES dnl See aclocal.m4 in the top level source directory. # 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. AC_CACHE_CHECK(for i386 TLS support, libc_cv_386_tls, [dnl @@ -28,3 +29,4 @@ rm -f conftest*]) if test $libc_cv_386_tls = yes; then AC_DEFINE(HAVE_TLS_SUPPORT) fi +fi |