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

View File

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