guile: disable thread support on Solaris
This commit is contained in:
parent
f20913e51f
commit
986f04c87e
|
@ -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 {}))
|
||||||
|
|
Loading…
Reference in New Issue