SDL2: disable parallel building

Example failure: https://hydra.nixos.org/build/63996552

(cherry picked from commit 80e8e555b4c2cd90701bbff664b1c8db6e81fd2f)
This commit is contained in:
Vladimír Čunát 2017-11-12 09:47:30 +01:00 committed by Orivej Desh
parent a955f0b88d
commit 020a6663d3

View File

@ -54,7 +54,9 @@ stdenv.mkDerivation rec {
# https://bugzilla.libsdl.org/show_bug.cgi?id=1431 # https://bugzilla.libsdl.org/show_bug.cgi?id=1431
dontDisableStatic = true; dontDisableStatic = true;
enableParallelBuilding = true; # /build/SDL2-2.0.7/src/video/wayland/SDL_waylandevents.c:41:10: fatal error:
# pointer-constraints-unstable-v1-client-protocol.h: No such file or directory
enableParallelBuilding = false;
# XXX: By default, SDL wants to dlopen() PulseAudio, in which case # XXX: By default, SDL wants to dlopen() PulseAudio, in which case
# we must arrange to add it to its RPATH; however, `patchelf' seems # we must arrange to add it to its RPATH; however, `patchelf' seems