mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-02 15:16:46 +00:00
PSP: disabling the ability to build Broken Sword 2.5. Revert once fixed.
Lua is very problematic for the PSP build because it wants a) libpng built with the plugins which is not great, but not that bad. b) It calls several PSP functions directly, and it turns out PSP functions can only be called from the main executable -- they're in flash and must be fixed up using custom PSP utils. Until this mechanism is changed so that for example lua calls functions in the main executable, the PSP cannot be built. The following functions need to be removed/moved to the main executable: All socket functions (should be disabled anyway) Clock() Rename() Additionally, png functions should ideally also be called only from the main executable. svn-id: r53615
This commit is contained in:
parent
0e7abce271
commit
193a0c6ca1
5
configure
vendored
5
configure
vendored
@ -2397,6 +2397,11 @@ if test `get_engine_build sword25` = yes && test ! "$_png" = yes ; then
|
||||
engine_disable sword25
|
||||
fi
|
||||
|
||||
if test `get_engine_build sword25` = yes && test "$_host" = psp ; then
|
||||
echo "...disabling Broken Sword 2.5 engine as PSP currently can't build it"
|
||||
engine_disable sword25
|
||||
fi
|
||||
|
||||
#
|
||||
# Check for Theora Decoder
|
||||
#
|
||||
|
Loading…
Reference in New Issue
Block a user