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 /configure.in | |
parent | 4b9abcb6b83ebc64aa2a468b950c24e4ee96e1a2 (diff) | |
download | glibc-8d4b5a8a50fad0ed1005380aa8d1c13dcfdab08d.tar glibc-8d4b5a8a50fad0ed1005380aa8d1c13dcfdab08d.tar.gz glibc-8d4b5a8a50fad0ed1005380aa8d1c13dcfdab08d.tar.bz2 glibc-8d4b5a8a50fad0ed1005380aa8d1c13dcfdab08d.zip |
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 'configure.in')
-rw-r--r-- | configure.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.in b/configure.in index ec9fcbc16d..5299146cdd 100644 --- a/configure.in +++ b/configure.in @@ -148,6 +148,11 @@ AC_ARG_ENABLE(add-ons, dnl esac], [add_ons=]) +dnl Let the user avoid using TLS. Don't know why but... +AC_ARG_WITH(tls, dnl +[ --without-tls prevent support for TLS], + usetls=$withval, usetls=yes) + AC_CONFIG_SUBDIRS($add_ons) add_ons_pfx= if test x"$add_ons" != x; then |