From 3978b728dbaad08a112f2f3b980221dea57523bb Mon Sep 17 00:00:00 2001 From: James Brown Date: Fri, 9 Apr 2004 12:36:06 +0000 Subject: Add Kyrandia base svn-id: r13516 --- configure | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'configure') diff --git a/configure b/configure index ebe2811344..391abffe80 100755 --- a/configure +++ b/configure @@ -38,6 +38,7 @@ _build_sky=yes _build_sword1=yes _build_sword2=yes _build_queen=yes +_build_kyra=no _build_saga=no _need_memalign=no _build_plugins=no @@ -212,6 +213,7 @@ Optional Features: --disable-sword1 don't build the Broken Sword I engine --disable-sword2 don't build the Broken Sword II engine --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-plugins build engines as loadable modules instead of static linking them @@ -261,6 +263,7 @@ for ac_option in $@; do --disable-sword1) _build_sword1=no ;; --disable-sword2) _build_sword2=no ;; --disable-queen) _build_queen=no ;; + --enable-kyra) _build_kyra=yes ;; --enable-saga) _build_saga=yes ;; --enable-alsa) _alsa=yes ;; --disable-alsa) _alsa=no ;; @@ -478,6 +481,12 @@ else _mak_queen='# DISABLE_QUEEN = 1' fi +if test "$_build_kyra" = no ; then + _mak_queen='DISABLE_KYRA = 1' +else + _mak_queen='# DISABLE_KYRA = 1' +fi + if test "$_build_saga" = no ; then _mak_saga='DISABLE_SAGA = 1' else @@ -848,6 +857,9 @@ fi if test "$_build_saga" = yes ; then echo " SAGA Engine" fi +if test "$_build_kyra" = yes ; then + echo " Legend of Kyrandia" +fi echo echo_n "Backend... " @@ -934,6 +946,7 @@ $_mak_sky $_mak_sword1 $_mak_sword2 $_mak_queen +$_mak_kyra $_mak_saga INCLUDES += $INCLUDES -- cgit v1.2.3