Ports: Updated the SDL2_mixer port to make it compile without

the opus and modplug music libraries.

Previously it wasnt compiling as we do not have ports of those
libraries. I have also changed the install location of the library so it
installs under /usr/include/SDL2 instead of /usr/local/include/SDL2.
This commit is contained in:
Manuel Palenzuela 2021-04-01 17:36:45 +02:00 committed by Andreas Kling
parent 8324e48218
commit a8f8e883c1

View file

@ -9,6 +9,9 @@ configure() {
run ./configure \
--host="${SERENITY_ARCH}-pc-serenity" \
--with-sdl-prefix="${SERENITY_BUILD_DIR}/Root/usr" \
--prefix="/usr" \
--enable-music-opus=false --enable-music-opus-shared=false \
--enable-music-mod-modplug=false --enable-music-mod-modplug-shared=false \
EXTRA_LDFLAGS="-lgui -lgfx -lipc -lcore -lcompression"
}