3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: libmikmod: Avoid dlopening libasound & co.

* gnu/packages/sdl.scm (libmikmod)[arguments]: New field.
This commit is contained in:
Ludovic Courtès 2014-11-10 23:12:01 +01:00
parent b756d3da4c
commit 03920078d5

View file

@ -104,6 +104,11 @@ joystick, and graphics hardware.")
(base32
"0dr4kgvhq9wf2riibh178c2al996spwwak6zffpv5n5bqmw29w3r"))))
(build-system gnu-build-system)
(arguments
;; By default, libmikmod tries to dlopen libasound etc., which won't work
;; unless the right libalsa happens to be in $LD_LIBRARY_PATH. Pass
;; '--disable-dl' to avoid that.
'(#:configure-flags '("--disable-dl")))
(inputs `(("alsa-lib" ,alsa-lib)
("libx11" ,libx11)))
(synopsis "Library for module sound formats")