From 2a077082e8c07b603980391e8fff0205230e9220 Mon Sep 17 00:00:00 2001 From: Fabian Greffrath Date: Fri, 3 Apr 2020 12:34:43 +0200 Subject: [PATCH] Let SDL2_Mixer prefer libmpg123 over libmad. --- pkgdef/SDL2_mixer.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgdef/SDL2_mixer.sh b/pkgdef/SDL2_mixer.sh index caae0a0..2752f4b 100644 --- a/pkgdef/SDL2_mixer.sh +++ b/pkgdef/SDL2_mixer.sh @@ -11,6 +11,7 @@ variant latest fetch_hg https://hg.libsdl.org/SDL_mixer config_options=" --disable-music-mod --disable-music-flac-shared --disable-music-ogg-shared + --disable-music-mp3-mpg123-shared " # ...except ones we have installed: @@ -28,7 +29,9 @@ else config_options+=" --disable-music-midi-fluidsynth" fi -if chocpkg installed ${PACKAGE_TYPE}:libmad; then +if chocpkg installed ${PACKAGE_TYPE}:libmpg123; then + config_options+=" --enable-music-mp3 --disable-music-mp3-mad-gpl --enable-music-mp3-mpg123" +elif chocpkg installed ${PACKAGE_TYPE}:libmad; then config_options+=" --enable-music-mp3 --enable-music-mp3-mad-gpl" else config_options+=" --disable-music-mp3 --disable-music-mp3-mad-gpl"