diff options
author | Tom Tromey <tromey@redhat.com> | 2006-10-02 18:03:18 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2006-10-02 18:03:18 +0000 |
commit | 98c5f827eaee19319e3ee496481e67142086e131 (patch) | |
tree | a4b7d58d212a1d2a8f9235e2f84751191fa5bc0b /config/tls.m4 | |
parent | 4303612646e5a024e76919ceb58d447b85fe56a6 (diff) | |
download | gdb-98c5f827eaee19319e3ee496481e67142086e131.zip gdb-98c5f827eaee19319e3ee496481e67142086e131.tar.gz gdb-98c5f827eaee19319e3ee496481e67142086e131.tar.bz2 |
* tls.m4 (GCC_CHECK_TLS): Pass empty argument as "help arg" to
GCC_ENABLE.
Diffstat (limited to 'config/tls.m4')
-rw-r--r-- | config/tls.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/tls.m4 b/config/tls.m4 index 5cbb685..b7a0730 100644 --- a/config/tls.m4 +++ b/config/tls.m4 @@ -1,6 +1,6 @@ dnl Check whether the target supports TLS. AC_DEFUN([GCC_CHECK_TLS], [ - GCC_ENABLE(tls, yes, [Use thread-local storage]) + GCC_ENABLE(tls, yes, [], [Use thread-local storage]) AC_CACHE_CHECK([whether the target supports thread-local storage], have_tls, [ AC_RUN_IFELSE([__thread int a; int b; int main() { return a = b; }], |