summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorDarkvater <darkvater@openttd.org>2006-12-10 00:20:26 +0000
committerDarkvater <darkvater@openttd.org>2006-12-10 00:20:26 +0000
commit14363bfb511ac9d81beaa31783ea54c8c8c6e8c4 (patch)
treeaaa2dfc73ef6e44ff99d063798b851c407836952 /configure
parent74106ce6e90c2871ac78f21390ce01da6ec4f209 (diff)
downloadopenttd-14363bfb511ac9d81beaa31783ea54c8c8c6e8c4.tar.xz
(svn r7461) -Fix: [FS#262] Add support for building with GCC on OS/2 (psmedley)
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure5
1 files changed, 4 insertions, 1 deletions
diff --git a/configure b/configure
index d61944def..2fd293954 100755
--- a/configure
+++ b/configure
@@ -20,7 +20,7 @@ function showhelp() {
echo " --host-cxx Sets the C++ host-compiler []"
echo " --os Sets the OS. Listens to: [detected]"
echo " UNIX, OSX, FREEBSD, MORPHOS"
- echo " BEOS, SUNOS, CYGWIN, MINGW"
+ echo " BEOS, SUNOS, CYGWIN, MINGW, OS2"
echo " --windres Sets the windres (Windows) [windres]"
echo " --force-le Force LE platform [no]"
echo " --force-be Force BE platform [no]"
@@ -277,6 +277,9 @@ then
BEOS)
PARAM="$PARAM BEOS=1 UNIX=1"
;;
+ OS2)
+ PARAM="$PARAM OS2=1 UNIX=1"
+ ;;
SUNOS)
PARAM="$PARAM SUNOS=1 UNIX=1"
;;