diff options
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -30,6 +30,7 @@ _build_sword2=yes _build_queen=yes _build_kyra=no _build_saga=yes +_build_gob=no _need_memalign=no _build_plugins=no _nasm=auto @@ -268,6 +269,7 @@ Optional Features: --disable-queen don't build the Flight of the Amazon Queen engine --disable-saga don't build the SAGA engine --enable-kyra build the Legend of Kyrandia engine + --enable-gob build the Gobli*ns engine --enable-plugins build engines as loadable modules instead of static linking them --disable-mt32emu don't enable the integrated MT-32 emulator @@ -322,6 +324,7 @@ for ac_option in $@; do --disable-queen) _build_queen=no ;; --disable-saga) _build_saga=no ;; --enable-kyra) _build_kyra=yes ;; + --enable-gob) _build_gob=yes ;; --enable-alsa) _alsa=yes ;; --disable-alsa) _alsa=no ;; --enable-vorbis) _vorbis=yes ;; @@ -581,6 +584,12 @@ else _mak_saga='# DISABLE_SAGA = 1' fi +if test "$_build_gob" = no ; then + _mak_gob='DISABLE_GOB = 1' +else + _mak_gob='# DISABLE_GOB = 1' +fi + if test -n "$_host"; then # Cross-compiling mode - add your target here if needed case "$_host" in @@ -1041,6 +1050,9 @@ fi if test "$_build_kyra" = yes ; then echo " Legend of Kyrandia" fi +if test "$_build_gob" = yes ; then + echo " Gobli*ns" +fi echo @@ -1166,6 +1178,7 @@ $_mak_sword2 $_mak_queen $_mak_kyra $_mak_saga +$_mak_gob $_mak_mt32emu INCLUDES += $INCLUDES |