Skip to content

Commit

Permalink
TOOLS: Minor additions to configure script.
Browse files Browse the repository at this point in the history
This restores some removed code which may be useful for possible OS2 and
RiscOS tool ports in the future.
  • Loading branch information
digitall committed Dec 1, 2012
1 parent 0dc8e52 commit d1f74e7
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion configure
Expand Up @@ -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"
;;
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit d1f74e7

Please sign in to comment.