[Scummvm-cvs-logs] SF.net SVN: scummvm: [26608] scummvm/trunk

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Fri Apr 27 17:10:14 CEST 2007


Revision: 26608
          http://scummvm.svn.sourceforge.net/scummvm/?rev=26608&view=rev
Author:   thebluegr
Date:     2007-04-27 08:10:13 -0700 (Fri, 27 Apr 2007)

Log Message:
-----------
Updated configure and engines/engines.mk to include the cruise engine (disabled by default)

Modified Paths:
--------------
    scummvm/trunk/configure
    scummvm/trunk/engines/engines.mk

Modified: scummvm/trunk/configure
===================================================================
--- scummvm/trunk/configure	2007-04-27 14:50:27 UTC (rev 26607)
+++ scummvm/trunk/configure	2007-04-27 15:10:13 UTC (rev 26608)
@@ -62,6 +62,7 @@
 _build_agi=yes
 _build_touche=yes
 _build_parallaction=no
+_build_cruise=no
 _need_memalign=no
 _build_plugins=no
 _nasm=auto
@@ -337,6 +338,7 @@
   --disable-agi            don't build the AGI engine
   --disable-touche         don't build the Touche: The Adventures of the Fifth Musketeer engine
   --enable-parallaction    build the Parallaction engine
+  --enable-cruise          build the Cruise for a Corpse engine
   --enable-plugins         build engines as loadable modules instead of
                            static linking them
   --disable-mt32emu        don't enable the integrated MT-32 emulator
@@ -407,6 +409,7 @@
       --disable-agi)            _build_agi=no ;;
       --disable-touche)         _build_touche=no ;;
       --enable-parallaction)    _build_parallaction=yes ;;
+      --enable-cruise)          _build_cruise=yes ;;
       --disable-hq-scalers)     _build_hq_scalers=no ;;
       --disable-scalers)        _build_scalers=no ;;
       --enable-alsa)            _alsa=yes       ;;
@@ -698,6 +701,7 @@
 add_flag_to_config_mk $_build_agi          'DISABLE_AGI'
 add_flag_to_config_mk $_build_touche       'DISABLE_TOUCHE'
 add_flag_to_config_mk $_build_parallaction 'DISABLE_PARALLACTION'
+add_flag_to_config_mk $_build_cruise       'DISABLE_CRUISE'
 add_flag_to_config_mk $_build_hq_scalers   'DISABLE_HQ_SCALERS'
 add_flag_to_config_mk $_build_scalers      'DISABLE_SCALERS'
 
@@ -1331,6 +1335,9 @@
 if test "$_build_parallaction" = yes ; then
 	echo "    Parallaction"
 fi
+if test "$_build_cruise" = yes ; then
+	echo "    Cruise for a Corpse"
+fi
 
 echo
 

Modified: scummvm/trunk/engines/engines.mk
===================================================================
--- scummvm/trunk/engines/engines.mk	2007-04-27 14:50:27 UTC (rev 26607)
+++ scummvm/trunk/engines/engines.mk	2007-04-27 15:10:13 UTC (rev 26608)
@@ -90,3 +90,9 @@
 else
 MODULES += engines/parallaction
 endif
+
+ifdef DISABLE_CRUISE
+DEFINES += -DDISABLE_CRUISE
+else
+MODULES += engines/cruise
+endif


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list