diff options
author | Ludovic Courtès <ludo@gnu.org> | 2009-11-24 22:07:16 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2009-11-24 22:07:16 +0100 |
commit | 6b1bc6e56aa6cece3acb4ec2be5324dc3be04a05 (patch) | |
tree | 12c6904631da0efad92c549b313f934043531e6b /acinclude.m4 | |
parent | 81adf76a26e4feaf5f8a1d5a44f2a5a617cffd84 (diff) |
Really disable thread-local storage on NetBSD 5.0.
* acinclude.m4 (GUILE_THREAD_LOCAL_STORAGE): Adjust to match actual
NetBSD 5 triplet, `x86_64-unknown-netbsd5.0.' (note the final dot).
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 7b2cfcb39..91d740d3d 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -349,7 +349,7 @@ AC_DEFUN([GUILE_THREAD_LOCAL_STORAGE], [ dnl http://lists.gnu.org/archive/html/guile-devel/2009-10/msg00138.html dnl for details. case "x$enable_shared--$host" in - xyes--*netbsd[0-5].[0-9]) + xyes--*netbsd[0-5].[0-9].) ac_cv_have_thread_storage_class="no" ;; *) |