aboutsummaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2006-09-19 01:48:06 +0000
committerTom Tromey <tromey@redhat.com>2006-09-19 01:48:06 +0000
commit00f0910edc575ba6e760b852dd459ca505dd1a35 (patch)
tree2433a9d6bbe783d2a242b770389157472217d88d /config
parent85c3e5e381b584171be3c201627a462b7cfe3a82 (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. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@117049 138bc75d-0d04-0410-961f-82ee72b054a4
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; }],