[Scummvm-cvs-logs] CVS: scummvm configure,1.132,1.133
Pawel Kolodziejski
aquadran at users.sourceforge.net
Wed Oct 26 10:40:13 CEST 2005
Update of /cvsroot/scummvm/scummvm
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15755/scummvm
Modified Files:
configure
Log Message:
applied patch #1331972 + changaed deprecated option to new one in -tail-
Index: configure
===================================================================
RCS file: /cvsroot/scummvm/scummvm/configure,v
retrieving revision 1.132
retrieving revision 1.133
diff -u -d -r1.132 -r1.133
--- configure 23 Oct 2005 10:49:33 -0000 1.132
+++ configure 26 Oct 2005 17:39:23 -0000 1.133
@@ -544,7 +544,7 @@
echocheck "compiler version"
-cxx_name=`( $cc -v ) 2>&1 | tail -1 | cut -d ' ' -f 1`
+cxx_name=`( $cc -v ) 2>&1 | tail -n 1 | cut -d ' ' -f 1`
cxx_version=`( $CXX -dumpversion ) 2>&1`
if test "$?" -gt 0; then
cxx_version="not found"
@@ -690,6 +690,16 @@
type_2_byte='short'
type_4_byte='int'
;;
+ arm-linux)
+ echo "Cross-compiling to $_host, forcing endianness, alignment and type sizes"
+ DEFINES="$DEFINES -DUNIX"
+ #not true for all ARM systems, but the interesting ones are all LE. Most (if not all) BE arm devices don't have a screen
+ _def_endianness='#define SCUMM_LITTLE_ENDIAN'
+ _def_align='#define SCUMM_NEED_ALIGNMENT'
+ type_1_byte='char'
+ type_2_byte='short'
+ type_4_byte='int'
+ ;;
ppc-amigaos)
echo "Cross-compiling to $_host, forcing endianness, alignment and type sizes"
_def_endianness='#define SCUMM_BIG_ENDIAN'
More information about the Scummvm-git-logs
mailing list