mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-28 05:35:52 +03:00
Ports/SDL_sound: Specify which optional dependencies to include
This fixes an issue where building `SDL_sound` with the `libphysfs` port installed would cause the build to fail. Ogg support has also been enabled. This allows playback of the sound effects in GLTron. Both FLAC and `libmodplug` support are currently disabled, even though the build succeeds with them enabled, as there is currently no way to test whether they would work or not.
This commit is contained in:
parent
9e5d430fbd
commit
b885be8046
Notes:
sideshowbarker
2024-07-16 21:45:42 +09:00
Author: https://github.com/tcl3 Commit: https://github.com/SerenityOS/serenity/commit/b885be8046 Pull-request: https://github.com/SerenityOS/serenity/pull/20710 Reviewed-by: https://github.com/timschumi ✅
@ -5,15 +5,19 @@ useconfigure='true'
|
||||
use_fresh_config_sub='true'
|
||||
depends=(
|
||||
'libmikmod'
|
||||
'libogg'
|
||||
'sdl12-compat'
|
||||
)
|
||||
files=(
|
||||
"https://www.icculus.org/SDL_sound/downloads/${port}-${version}.tar.gz 3999fd0bbb485289a52be14b2f68b571cb84e380cc43387eadf778f64c79e6df"
|
||||
)
|
||||
configopts=(
|
||||
'--enable-flac=no'
|
||||
'--enable-modplug=no'
|
||||
'--enable-ogg=no'
|
||||
"--with-sdl-prefix=${SERENITY_INSTALL_ROOT}/usr/local"
|
||||
'--enable-physfs=no'
|
||||
'--enable-smpeg=no'
|
||||
'--enable-speex=no'
|
||||
"--with-sdl-prefix=${SERENITY_INSTALL_ROOT}/usr/local"
|
||||
)
|
||||
makeopts=(
|
||||
'LDFLAGS=-lm'
|
||||
|
Loading…
Reference in New Issue
Block a user