aboutsummaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorhp.com!davidm <hp.com!davidm>2003-09-24 21:51:53 +0000
committerhp.com!davidm <hp.com!davidm>2003-09-24 21:51:53 +0000
commitd75c356fc8f810854875bf242105cac99d654d14 (patch)
tree8b4a6bdfeb951c80a4335ef932ccf0e115f4ef6c /acinclude.m4
parent1be40c4ff644b432dfbfaa66c6b2060fe3b85ab8 (diff)
downloadlibunwind-d75c356fc8f810854875bf242105cac99d654d14.tar.gz
(LIBUNWIND___THREAD): Check $enable___thread instead of $use__thread.
(Logical change 1.101)
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 91f73a35..e37f2a7c 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -1,6 +1,6 @@
AC_DEFUN([LIBUNWIND___THREAD],
[dnl Check whether the compiler supports the __thread keyword.
-if test "x$use__thread" != xno; then
+if test "x$enable___thread" != xno; then
AC_CACHE_CHECK([for __thread], libc_cv_gcc___thread,
[cat > conftest.c <<\EOF
__thread int a = 42;