aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Willis2007-06-26 08:37:40 +0000
committerJohn Willis2007-06-26 08:37:40 +0000
commitcf0eb563adb10454b1a4c9b0d7c387526b348b30 (patch)
tree63e81d596ce5e0cb73d053648b5d05ac6da4ae27
parentc967312d747aa299b2e92ff38d96499cf8666c94 (diff)
downloadscummvm-rg350-cf0eb563adb10454b1a4c9b0d7c387526b348b30.tar.gz
scummvm-rg350-cf0eb563adb10454b1a4c9b0d7c387526b348b30.tar.bz2
scummvm-rg350-cf0eb563adb10454b1a4c9b0d7c387526b348b30.zip
Update GP2X configure rules to support the new ARM ASM SMUSH code.
svn-id: r27726
-rwxr-xr-xconfigure4
1 files changed, 3 insertions, 1 deletions
diff --git a/configure b/configure
index eccbf625a6..85e4343e11 100755
--- a/configure
+++ b/configure
@@ -760,12 +760,14 @@ if test -n "$_host"; then
;;
gp2x)
echo "Cross-compiling to $_host, forcing endianness, alignment and type sizes"
- DEFINES="$DEFINES -DUNIX -DGP2X -DUSE_ARM_SOUND_ASM"
+ DEFINES="$DEFINES -DUNIX -DGP2X -DUSE_ARM_SOUND_ASM -DUSE_ARM_SMUSH_ASM"
_endian=little
_need_memalign=yes
type_1_byte='char'
type_2_byte='short'
type_4_byte='int'
+ add_line_to_config_mk 'USE_ARM_SOUND_ASM = 1'
+ add_line_to_config_mk 'USE_ARM_SMUSH_ASM = 1'
_backend="gp2x"
_mak_hq_scalers='DISABLE_HQ_SCALERS = 1'
_build_hq_scalers="no"