summary refs log tree commit diff
path: root/pkgs/development/interpreters/guile
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2012-08-10 23:16:02 +0200
committerLudovic Courtès <ludo@gnu.org>2012-08-10 23:16:02 +0200
commit986f04c87efed848a27f5b571c15937acf12923b (patch)
tree0f1ba401fa19ebbbc8830a2cd6d5bf999b98e0d7 /pkgs/development/interpreters/guile
parentf20913e51fb6510ddd74d558a5b532764c92abdb (diff)
downloadnixlib-986f04c87efed848a27f5b571c15937acf12923b.tar
nixlib-986f04c87efed848a27f5b571c15937acf12923b.tar.gz
nixlib-986f04c87efed848a27f5b571c15937acf12923b.tar.bz2
nixlib-986f04c87efed848a27f5b571c15937acf12923b.tar.lz
nixlib-986f04c87efed848a27f5b571c15937acf12923b.tar.xz
nixlib-986f04c87efed848a27f5b571c15937acf12923b.tar.zst
nixlib-986f04c87efed848a27f5b571c15937acf12923b.zip
guile: disable thread support on Solaris
Diffstat (limited to 'pkgs/development/interpreters/guile')
-rw-r--r--pkgs/development/interpreters/guile/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/interpreters/guile/default.nix b/pkgs/development/interpreters/guile/default.nix
index 93676a9b11a3..78a7a8e793ee 100644
--- a/pkgs/development/interpreters/guile/default.nix
+++ b/pkgs/development/interpreters/guile/default.nix
@@ -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 {}))