diff options
author | Willem Jan Palenstijn | 2011-10-19 13:40:59 +0200 |
---|---|---|
committer | Willem Jan Palenstijn | 2011-10-19 13:57:09 +0200 |
commit | 84bc5651271f70e470099a19ab197ef038ef4a3b (patch) | |
tree | b487a67bbd091f2066741c9738f13d6e8ff95e99 /configure | |
parent | dd2df58f21e3062bc39e366020dece2d84e436fd (diff) | |
parent | dbd391bdfe9790aab8f6ae3dc7762ff2662cfbb4 (diff) | |
download | scummvm-rg350-84bc5651271f70e470099a19ab197ef038ef4a3b.tar.gz scummvm-rg350-84bc5651271f70e470099a19ab197ef038ef4a3b.tar.bz2 scummvm-rg350-84bc5651271f70e470099a19ab197ef038ef4a3b.zip |
Merge pull request #89 from TomFrost/master
HP TouchPad compatibility and full WebOS port update, Round 2
This is a manual merge of the pull request, with some commit message changes.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -2422,12 +2422,14 @@ if test -n "$_host"; then webos) _backend="webos" _port_mk="backends/platform/webos/webos.mk" - _build_scalers=no + _build_scalers=yes + _build_hq_scalers=no _timidity=no _mt32emu=no _seq_midi=no _vkeybd=no _keymapper=yes + add_line_to_config_mk "HOST_COMPILER = `uname`" ;; wii) _backend="wii" @@ -2574,7 +2576,8 @@ case $_backend in ;; webos) # There is no sdl-config in the WebOS PDK so we don't use find_sdlconfig here. - LIBS="$LIBS -lSDL" + # The PDL library acts as the WebOS device toolchain, and is required to control the virtual keyboard among other OS-level events. + LIBS="$LIBS -lSDL -lpdl" DEFINES="$DEFINES -DWEBOS" DEFINES="$DEFINES -DSDL_BACKEND" add_line_to_config_mk "SDL_BACKEND = 1" |