guile: disable thread support on Solaris

This commit is contained in:
Ludovic Courtès 2012-08-10 23:16:02 +02:00
parent f20913e51f
commit 986f04c87e
1 changed files with 3 additions and 3 deletions

View File

@ -99,10 +99,10 @@
// //
(if stdenv.isFreeBSD (if (stdenv.isFreeBSD || stdenv.isSunOS)
then { then {
# XXX: Thread support is currently broken on FreeBSD (namely the # XXX: Thread support is currently broken on FreeBSD and Solaris (namely
# `SCM_I_IS_THREAD' assertion in `scm_spawn_thread' is hit.) # the `SCM_I_IS_THREAD' assertion in `scm_spawn_thread' is hit.)
configureFlags = [ "--without-threads" ]; configureFlags = [ "--without-threads" ];
} }
else {})) else {}))