From d1f74e70be7e961507f2f19989fc4e5507c8d604 Mon Sep 17 00:00:00 2001 From: D G Turner Date: Sat, 1 Dec 2012 08:38:49 +0000 Subject: [PATCH] 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. --- configure | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/configure b/configure index c3c609fa..394b7d9d 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