aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorPaweł Kołodziejski2004-05-05 07:25:32 +0000
committerPaweł Kołodziejski2004-05-05 07:25:32 +0000
commite29ec6e79c325bcea2c95ecbfeb3a64c80a30630 (patch)
treecc532d796c8800d693105ce7c1f9c799111f37fe /configure
parent06002009806a770198c7e228f8b3e0203439b17d (diff)
downloadscummvm-rg350-e29ec6e79c325bcea2c95ecbfeb3a64c80a30630.tar.gz
scummvm-rg350-e29ec6e79c325bcea2c95ecbfeb3a64c80a30630.tar.bz2
scummvm-rg350-e29ec6e79c325bcea2c95ecbfeb3a64c80a30630.zip
adding initial code for Another World engine
svn-id: r13783
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure12
1 files changed, 12 insertions, 0 deletions
diff --git a/configure b/configure
index 925f983b91..13aeba48c9 100755
--- a/configure
+++ b/configure
@@ -40,6 +40,7 @@ _build_sword2=yes
_build_queen=yes
_build_kyra=no
_build_saga=no
+_build_awe=no
_need_memalign=no
_build_plugins=no
# more defaults
@@ -222,6 +223,7 @@ Optional Features:
--disable-queen don't build the Flight of the Amazon Queen engine
--enable-kyra build the Legend of Kyrandia engine
--enable-saga build the SAGA engine
+ --enable-awe build the Another World engine
--enable-plugins build engines as loadable modules instead of
static linking them
@@ -272,6 +274,7 @@ for ac_option in $@; do
--disable-queen) _build_queen=no ;;
--enable-kyra) _build_kyra=yes ;;
--enable-saga) _build_saga=yes ;;
+ --enable-awe) _build_awe=yes ;;
--enable-alsa) _alsa=yes ;;
--disable-alsa) _alsa=no ;;
--enable-vorbis) _vorbis=yes ;;
@@ -509,6 +512,11 @@ else
_mak_saga='# DISABLE_SAGA = 1'
fi
+if test "$_build_awe" = no ; then
+ _mak_awe='DISABLE_AWE = 1'
+else
+ _mak_awe='# DISABLE_AWE = 1'
+fi
if test -n "$_host"; then
# Cross-compiling mode - add your target here if needed
@@ -892,6 +900,10 @@ fi
if test "$_build_kyra" = yes ; then
echo " Legend of Kyrandia"
fi
+if test "$_build_awe" = yes ; then
+ echo " Another World"
+fi
+
echo
echo_n "Backend... "