diff options
author | John Willis | 2007-06-16 21:14:21 +0000 |
---|---|---|
committer | John Willis | 2007-06-16 21:14:21 +0000 |
commit | 1281707d294e8851df83b5a7588df1b00f83b914 (patch) | |
tree | e80b963559dd9319c18257aa2b6b7e6ef74dc6a1 | |
parent | 03d621646a42b885651d69165a8d5225aa117e9a (diff) | |
download | scummvm-rg350-1281707d294e8851df83b5a7588df1b00f83b914.tar.gz scummvm-rg350-1281707d294e8851df83b5a7588df1b00f83b914.tar.bz2 scummvm-rg350-1281707d294e8851df83b5a7588df1b00f83b914.zip |
Update GP2X configure rules to support the new ARM ASM mixer code (i.e. USE_ARM_SOUND_ASM) it has been in my local tree for some time and works well with the port.
Also fix typo that has been bugging me for a while ;). 2 spaces between Broken Sword 1 and (without mpeg2 cutscenes) on the echo statements.
svn-id: r27497
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -731,7 +731,7 @@ if test -n "$_host"; then ;; gp2x) echo "Cross-compiling to $_host, forcing endianness, alignment and type sizes" - DEFINES="$DEFINES -DUNIX -DGP2X" + DEFINES="$DEFINES -DUNIX -DGP2X -DUSE_ARM_SOUND_ASM" _def_endianness='#define SCUMM_LITTLE_ENDIAN' _def_align='#define SCUMM_NEED_ALIGNMENT' type_1_byte='char' @@ -1324,7 +1324,7 @@ if test "$_build_sword1" = yes ; then if test "$_mpeg2" = yes ; then echo " (w/ mpeg2 cutscenes)" else - echo " (without mpeg2 cutscenes)" + echo " (without mpeg2 cutscenes)" fi fi if test "$_build_sword2" = yes ; then |