aboutsummaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authortromey <>2006-09-19 00:48:06 +0000
committertromey <>2006-09-19 00:48:06 +0000
commit6cf1cb632f2278980a1608e2e823e433801b361a (patch)
tree2433a9d6bbe783d2a242b770389157472217d88d /config
parent27ca518a1c4cd07495b3a059c587c252a3e1bb5f (diff)
config
* tls.m4 (GCC_CHECK_TLS): Pass empty argument as "help arg" to GCC_ENABLE. libgomp * configure: Rebuilt. libstdc++-v3 * configure: Rebuilt. libmudflap * configure: Rebuilt. libjava * configure: Rebuilt.
Diffstat (limited to 'config')
-rw-r--r--config/ChangeLog5
-rw-r--r--config/tls.m42
2 files changed, 6 insertions, 1 deletions
diff --git a/config/ChangeLog b/config/ChangeLog
index 3c3343b0623..fa855c0afa2 100644
--- a/config/ChangeLog
+++ b/config/ChangeLog
@@ -1,3 +1,8 @@
+2006-09-18 Tom Tromey <tromey@redhat.com>
+
+ * tls.m4 (GCC_CHECK_TLS): Pass empty argument as "help arg" to
+ GCC_ENABLE.
+
2006-07-25 Paolo Bonzini <bonzini@gnu.org>
PR build/26188
diff --git a/config/tls.m4 b/config/tls.m4
index 5cbb6854f6c..b7a07309abe 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; }],