diff options
author | Cameron Cawley | 2019-03-31 19:07:40 +0100 |
---|---|---|
committer | Filippos Karapetis | 2019-04-15 08:06:39 +0300 |
commit | bcef809e612177c2bcb7ca3f8682ea96d38c4cdc (patch) | |
tree | 14bc067ff02ef2e1aabd19360db67e22deb8704f /configure | |
parent | 82f4ee86a9824a9cdfd5060d7bab23be381a46df (diff) | |
download | scummvm-rg350-bcef809e612177c2bcb7ca3f8682ea96d38c4cdc.tar.gz scummvm-rg350-bcef809e612177c2bcb7ca3f8682ea96d38c4cdc.tar.bz2 scummvm-rg350-bcef809e612177c2bcb7ca3f8682ea96d38c4cdc.zip |
WINCE: Fix compilation
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -3431,7 +3431,9 @@ if test -n "$_host"; then ;; wince) append_var LDFLAGS "-Wl,--stack,65536" - _tremolo=yes + if test "$_tremor" = auto; then + _tremolo=yes + fi _backend="wince" _detectlang=yes _mt32emu=no @@ -3625,6 +3627,7 @@ case $_backend in append_var INCLUDES '-I$(srcdir)/backends/platform/wince' append_var INCLUDES '-I$(srcdir)/backends/platform/wince/CEgui' append_var INCLUDES '-I$(srcdir)/backends/platform/wince/CEkeys' + append_var INCLUDES '-I$(srcdir)/backends/platform/wince/missing' append_var LIBS "-static -lSDL" _sdl=yes _sdlversion=1.2.0 |