1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-06-26 03:11:44 +02:00

(LIBUNWIND___THREAD): Check $enable___thread instead of $use__thread.

(Logical change 1.101)
This commit is contained in:
hp.com!davidm 2003-09-24 21:51:53 +00:00
parent 1be40c4ff6
commit d75c356fc8

View file

@ -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;