PS2: Fix hardcoded library settings to allow building against old SDK.
The autodetection should be fixed or modified to remove these hardcoded library enables. For now, we add another minor HACK to disable the troublesome Tremor Ogg Vorbis enable on older SDK, which should fix the buildbot builds.
This commit is contained in:
parent
82a502ea4c
commit
2779e6825c
1 changed files with 4 additions and 1 deletions
3
configure
vendored
3
configure
vendored
|
@ -2710,7 +2710,10 @@ if test -n "$_host"; then
|
|||
# This trick doesn't work for tremor right now, as the PS2 port the resulting library
|
||||
# libtremor, while our code later on expects it to be called libvorbisidec.
|
||||
# TODO: Enable tremor, e.g. by adding -ltremor or by renaming the lib.
|
||||
# Disable this for older SDK as this breaks the build otherwise...
|
||||
if test -z "$PS2SDK_OLD"; then
|
||||
_tremor=yes
|
||||
fi
|
||||
_mad=yes
|
||||
_zlib=yes
|
||||
# HACK to fix compilation of C source files for now.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue