[Scummvm-cvs-logs] scummvm-tools master -> d1f74e70be7e961507f2f19989fc4e5507c8d604

digitall dgturner at iee.org
Sat Dec 1 09:41:29 CET 2012


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm-tools' repo located at https://github.com/scummvm/scummvm-tools .

Summary:
d1f74e70be TOOLS: Minor additions to configure script.


Commit: d1f74e70be7e961507f2f19989fc4e5507c8d604
    https://github.com/scummvm/scummvm-tools/commit/d1f74e70be7e961507f2f19989fc4e5507c8d604
Author: D G Turner (digitall at scummvm.org)
Date: 2012-12-01T00:38:49-08:00

Commit Message:
TOOLS: Minor additions to configure script.

This restores some removed code which may be useful for possible OS2 and
RiscOS tool ports in the future.

Changed paths:
    configure



diff --git a/configure b/configure
index c3c609f..394b7d9 100755
--- a/configure
+++ b/configure
@@ -263,6 +263,15 @@ find_wxconfig() {
 #
 get_system_exe_extension() {
 	case $1 in
+	arm-riscos)
+		_exeext=",ff8"
+		;;
+	dreamcast | ds | gamecube | n64 | ps2 | psp | wii)
+		_exeext=".elf"
+		;;
+	gph-linux)
+		_exeext=".gph"
+		;;
 	mingw* | *os2-emx | wince)
 		_exeext=".exe"
 		;;
@@ -695,7 +704,18 @@ fi
 #
 get_system_exe_extension $_host_os
 HOSTEXEEXT=$_exeext
-SEPARATOR=":"
+
+#
+# Determine separator used for $PATH
+#
+case $_host_os in
+os2-emx*)
+	SEPARATOR=";"
+	;;
+*)
+	SEPARATOR=":"
+	;;
+esac
 
 #
 # Determine the C++ compiler






More information about the Scummvm-git-logs mailing list