gdk_pixbuf: tests crash on Darwin with gcc 4.8.3
This commit is contained in:
parent
e07c7e773c
commit
640d09f8c7
1 changed files with 6 additions and 1 deletions
|
@ -4762,7 +4762,12 @@ let
|
|||
|
||||
pangox_compat = callPackage ../development/libraries/pangox-compat { };
|
||||
|
||||
gdk_pixbuf = callPackage ../development/libraries/gdk-pixbuf { };
|
||||
gdk_pixbuf = callPackage ../development/libraries/gdk-pixbuf {
|
||||
# workaround signal 10 in gdk_pixbuf tests
|
||||
stdenv = if stdenv.isDarwin
|
||||
then clangStdenv
|
||||
else stdenv;
|
||||
};
|
||||
|
||||
gtk2 = callPackage ../development/libraries/gtk+/2.x.nix {
|
||||
cupsSupport = config.gtk2.cups or stdenv.isLinux;
|
||||
|
|
Loading…
Reference in a new issue