mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 05:37:34 +00: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
1 changed files with 6 additions and 2 deletions
|
@ -5,15 +5,19 @@ useconfigure='true'
|
||||||
use_fresh_config_sub='true'
|
use_fresh_config_sub='true'
|
||||||
depends=(
|
depends=(
|
||||||
'libmikmod'
|
'libmikmod'
|
||||||
|
'libogg'
|
||||||
'sdl12-compat'
|
'sdl12-compat'
|
||||||
)
|
)
|
||||||
files=(
|
files=(
|
||||||
"https://www.icculus.org/SDL_sound/downloads/${port}-${version}.tar.gz 3999fd0bbb485289a52be14b2f68b571cb84e380cc43387eadf778f64c79e6df"
|
"https://www.icculus.org/SDL_sound/downloads/${port}-${version}.tar.gz 3999fd0bbb485289a52be14b2f68b571cb84e380cc43387eadf778f64c79e6df"
|
||||||
)
|
)
|
||||||
configopts=(
|
configopts=(
|
||||||
|
'--enable-flac=no'
|
||||||
'--enable-modplug=no'
|
'--enable-modplug=no'
|
||||||
'--enable-ogg=no'
|
'--enable-physfs=no'
|
||||||
"--with-sdl-prefix=${SERENITY_INSTALL_ROOT}/usr/local"
|
'--enable-smpeg=no'
|
||||||
|
'--enable-speex=no'
|
||||||
|
"--with-sdl-prefix=${SERENITY_INSTALL_ROOT}/usr/local"
|
||||||
)
|
)
|
||||||
makeopts=(
|
makeopts=(
|
||||||
'LDFLAGS=-lm'
|
'LDFLAGS=-lm'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue