[Scummvm-cvs-logs] SF.net SVN: scummvm:[33252] scummvm/trunk/configure

sev at users.sourceforge.net sev at users.sourceforge.net
Wed Jul 23 21:50:57 CEST 2008


Revision: 33252
          http://scummvm.svn.sourceforge.net/scummvm/?rev=33252&view=rev
Author:   sev
Date:     2008-07-23 19:50:57 +0000 (Wed, 23 Jul 2008)

Log Message:
-----------
Fix bug which was triggered by file named 'a' in current directory.

Modified Paths:
--------------
    scummvm/trunk/configure

Modified: scummvm/trunk/configure
===================================================================
--- scummvm/trunk/configure	2008-07-23 17:57:11 UTC (rev 33251)
+++ scummvm/trunk/configure	2008-07-23 19:50:57 UTC (rev 33252)
@@ -811,6 +811,10 @@
 	_host_os=iphone
 	_host_cpu=arm
 	;;
+neuros)
+	_host_os=linux
+	_host_cpu=arm
+	;;
 *)
 	if test -z "$_host"; then
 		guessed_host=`$_srcdir/config.guess`
@@ -1123,6 +1127,19 @@
 			_backend="gp2x"
 			_build_hq_scalers="no"
 			;;
+		neuros)
+			echo "Cross-compiling to $_host, forcing endianness, alignment and type sizes"
+			DEFINES="$DEFINES -DUNIX"
+			_endian=little
+			_need_memalign=yes
+			add_line_to_config_h "#define NEUROS"
+			type_1_byte='char'
+			type_2_byte='short'
+			type_4_byte='int'
+			_backend='null'
+			_build_hq_scalers="no"
+			_mt32emu="no"
+			;;
 		ppc-amigaos)
 			echo "Cross-compiling to $_host, forcing endianness, alignment and type sizes"
 			_endian=big
@@ -1629,7 +1646,7 @@
 	fi
 
 	# Save the settings
-	defname="ENABLE_`echo $engine | tr [a-z] [A-Z]`"
+	defname="ENABLE_`echo $engine | tr '[a-z]' '[A-Z]'`"
 	if test "$isbuilt" = "no" ; then
 		add_line_to_config_mk "# $defname"
 	else


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list