aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Howell2003-12-16 05:34:00 +0000
committerTravis Howell2003-12-16 05:34:00 +0000
commit28331ab2ac2050ab69691193b41e63dd495f8c87 (patch)
tree8e0faa3f97c4036335cd9af2727b4dec2068a051
parentb3e6c54b64c4d8e08b466b53fc5f0324a9733e53 (diff)
downloadscummvm-rg350-28331ab2ac2050ab69691193b41e63dd495f8c87.tar.gz
scummvm-rg350-28331ab2ac2050ab69691193b41e63dd495f8c87.tar.bz2
scummvm-rg350-28331ab2ac2050ab69691193b41e63dd495f8c87.zip
Add sword1
svn-id: r11674
-rwxr-xr-xconfigure13
1 files changed, 13 insertions, 0 deletions
diff --git a/configure b/configure
index b4574f2f9b..49080543bf 100755
--- a/configure
+++ b/configure
@@ -33,6 +33,7 @@ _zlib=auto
_build_scumm=yes
_build_simon=yes
_build_sky=yes
+_build_bs1=yes
_build_bs2=yes
_build_queen=yes
_need_memalign=no
@@ -173,6 +174,7 @@ Optional Features:
--disable-scumm don't build the SCUMM engine
--disable-simon don't build the simon engine
--disable-sky don't build the Beneath a Steel Sky engine
+ --disable-bs1 don't build the Broken Sword I engine
--disable-bs2 don't build the Broken Sword II engine
--disable-queen don't build the Flight of the Amazon Queen engine
@@ -199,6 +201,7 @@ for ac_option in $@; do
--disable-scumm) _build_scumm=no ;;
--disable-simon) _build_simon=no ;;
--disable-sky) _build_sky=no ;;
+ --disable-bs1) _build_bs1=no ;;
--disable-bs2) _build_bs2=no ;;
--disable-queen) _build_queen=no ;;
--enable-alsa) _alsa=yes ;;
@@ -343,6 +346,12 @@ else
_mak_sky='# DISABLE_SKY = 1'
fi
+if test "$_build_bs1" = no ; then
+ _mak_bs1='DISABLE_SWORD1 = 1'
+else
+ _mak_bs1='# DISABLE_SWORD1 = 1'
+fi
+
if test "$_build_bs2" = no ; then
_mak_bs2='DISABLE_SWORD2 = 1'
else
@@ -563,6 +572,9 @@ fi
if test "$_build_sky" = yes ; then
echo " Beneath a Steel Sky"
fi
+if test "$_build_bs1" = yes ; then
+ echo " Broken Sword I"
+fi
if test "$_build_bs2" = yes ; then
echo " Broken Sword II"
fi
@@ -656,6 +668,7 @@ $_make_def_HAVE_GCC3
$_mak_scumm
$_mak_simon
$_mak_sky
+$_mak_bs1
$_mak_bs2
$_mak_queen