aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorEugene Sandulenko2006-02-22 22:40:53 +0000
committerEugene Sandulenko2006-02-22 22:40:53 +0000
commit71c170bb136ab94d70eb10d55cfd897dc89c9682 (patch)
treed555cf8177ba4f6fe3fbc0b0fd1d5d45df58874e /configure
parenta467247e6ed972e0a13bf26af07811dda55bd69a (diff)
downloadscummvm-rg350-71c170bb136ab94d70eb10d55cfd897dc89c9682.tar.gz
scummvm-rg350-71c170bb136ab94d70eb10d55cfd897dc89c9682.tar.bz2
scummvm-rg350-71c170bb136ab94d70eb10d55cfd897dc89c9682.zip
Initial version of Cinematique engine evo 1.
svn-id: r20813
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure13
1 files changed, 13 insertions, 0 deletions
diff --git a/configure b/configure
index a99cacb022..a915832dd8 100755
--- a/configure
+++ b/configure
@@ -58,6 +58,7 @@ _build_saga=yes
_build_gob=yes
_build_kyra=yes
_build_lure=no
+_build_cine=no
_need_memalign=no
_build_plugins=no
_nasm=auto
@@ -305,6 +306,7 @@ Optional Features:
--disable-gob don't build the Gobli*ns engine
--disable-kyra don't build the Legend of Kyrandia engine
--enable-lure build the Lure of the Temptress engine
+ --enable-cine build the Cinematique engine evo 1
--enable-plugins build engines as loadable modules instead of
static linking them
--disable-mt32emu don't enable the integrated MT-32 emulator
@@ -371,6 +373,7 @@ for ac_option in $@; do
--disable-gob) _build_gob=no ;;
--disable-kyra) _build_kyra=no ;;
--enable-lure) _build_lure=yes ;;
+ --enable-cine) _build_cine=yes ;;
--disable-hq-scalers) _build_hq_scalers=no ;;
--disable-scalers) _build_scalers=no ;;
--enable-alsa) _alsa=yes ;;
@@ -691,6 +694,12 @@ else
_mak_lure='# DISABLE_LURE = 1'
fi
+if test "$_build_cine" = no ; then
+ _mak_lure='DISABLE_CINE = 1'
+else
+ _mak_lure='# DISABLE_CINE = 1'
+fi
+
if test "$_build_hq_scalers" = no ; then
_mak_hq_scalers='DISABLE_HQ_SCALERS = 1'
else
@@ -1259,6 +1268,9 @@ fi
if test "$_build_lure" = yes ; then
echo " Lure of the Temptress"
fi
+if test "$_build_cine" = yes ; then
+ echo " Cinematique evo 1"
+fi
echo
@@ -1395,6 +1407,7 @@ $_mak_kyra
$_mak_saga
$_mak_gob
$_mak_lure
+$_mak_cine
$_mak_mt32emu
$_mak_hq_scalers