summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-12-15 19:22:19 +0100
committerLudovic Courtès <ludo@gnu.org>2009-12-15 19:22:19 +0100
commitd7297d3923a81a270a652b958dc1c04fec09cc7d (patch)
treed66263a868cc487ada47c9ca27675f3b6b4aa836 /acinclude.m4
parenteb80072df01fd910b3a080cbb1563163d6063cd7 (diff)
downloadguile-d7297d3923a81a270a652b958dc1c04fec09cc7d.tar.gz
Disable thread-local storage on Solaris 8.
* acinclude.m4 (GUILE_THREAD_LOCAL_STORAGE): Special-case `*solaris2.8'.
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m46
1 files changed, 5 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index fdf20d4c7..2f1466bac 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -348,8 +348,12 @@ AC_DEFUN([GUILE_THREAD_LOCAL_STORAGE], [
dnl explicitly check for known-broken systems. See
dnl http://lists.gnu.org/archive/html/guile-devel/2009-10/msg00138.html
dnl for details.
+ dnl
+ dnl Known broken systems includes:
+ dnl - x86_64-unknown-netbsd5.0.
+ dnl - sparc-sun-solaris2.8
case "x$enable_shared--$host" in
- xyes--*netbsd[0-5].[0-9].)
+ xyes--*netbsd[0-5].[0-9].|xyes--*solaris2.8)
ac_cv_have_thread_storage_class="no"
;;
*)