diff options
author | Timotej Lazar <timotej.lazar@araneo.si> | 2020-01-05 11:45:49 +0100 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2020-01-05 13:09:31 +0100 |
commit | 64941afcf980b0c36fbd05bb6d4bc9ebeadb5b08 (patch) | |
tree | 3ec86e6506d044d6a2c4631af62f9c398995528d | |
parent | 36f1ba7bfe93308feca582b91dcc2dd4dbce86b8 (diff) | |
download | guix-64941afcf980b0c36fbd05bb6d4bc9ebeadb5b08.tar.gz guix-64941afcf980b0c36fbd05bb6d4bc9ebeadb5b08.zip |
gnu: sdl2-mixer: Fix configure flags.
Some configure options were renamed between SDL / SDL2 mixer; add new variants
to the derived package.
* gnu/packages/sdl.scm (sdl2-mixer)[arguments]: Fix flags to disable dynamic
library loading.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
-rw-r--r-- | gnu/packages/sdl.scm | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gnu/packages/sdl.scm b/gnu/packages/sdl.scm index 92d8f9a922..d441040cd6 100644 --- a/gnu/packages/sdl.scm +++ b/gnu/packages/sdl.scm @@ -415,6 +415,15 @@ directory.") #t)) (sha256 (base32 "0694vsz5bjkcdgfdra6x9fq8vpzrl8m6q96gh58df7065hw5mkxl")))) + (arguments + (substitute-keyword-arguments (package-arguments sdl-mixer) + ((#:configure-flags flags) + `(cons* + ;; These options were renamed in SDL2 mixer. Keeping the inherited + ;; variants produces a harmless warning. + "--disable-music-mod-modplug-shared" + "--disable-music-midi-fluidsynth-shared" + ,flags)))) (inputs ;; The default MOD library changed in SDL2 mixer. `(("libmodplug" ,libmodplug) |