[Scummvm-cvs-logs] CVS: scummvm Makefile.common,1.83,1.84 configure,1.76,1.77

Eugene Sandulenko sev at users.sourceforge.net
Sun Mar 14 15:47:01 CET 2004


Update of /cvsroot/scummvm/scummvm
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19478

Modified Files:
	Makefile.common configure 
Log Message:
Initial SAGA checkin. Disabled by default, enable with --enable-saga
but don't expect it to work.


Index: Makefile.common
===================================================================
RCS file: /cvsroot/scummvm/scummvm/Makefile.common,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -d -r1.83 -r1.84
--- Makefile.common	25 Feb 2004 10:31:53 -0000	1.83
+++ Makefile.common	14 Mar 2004 23:37:11 -0000	1.84
@@ -79,6 +79,12 @@
 MODULES += queen
 endif
 
+ifdef DISABLE_SAGA
+DEFINES += -DDISABLE_SAGA
+else 
+MODULES += saga
+endif
+
 # After the game specific modules follow the shared modules
 MODULES += \
 	gui \

Index: configure
===================================================================
RCS file: /cvsroot/scummvm/scummvm/configure,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -d -r1.76 -r1.77
--- configure	4 Mar 2004 22:44:10 -0000	1.76
+++ configure	14 Mar 2004 23:37:11 -0000	1.77
@@ -38,6 +38,7 @@
 _build_sword1=yes
 _build_sword2=yes
 _build_queen=yes
+_build_saga=no
 _need_memalign=no
 _build_plugins=no
 # more defaults
@@ -251,6 +252,7 @@
       --disable-sword1)		_build_sword1=no ;;
       --disable-sword2)		_build_sword2=no ;;
       --disable-queen)		_build_queen=no ;;
+      --enable-saga)		_build_saga=yes ;;
       --enable-alsa)		_alsa=yes	;;
       --disable-alsa)		_alsa=no	;;
       --enable-vorbis)		_vorbis=yes	;;
@@ -443,6 +445,12 @@
 	_mak_queen='# DISABLE_QUEEN = 1'
 fi
 
+if test "$_build_saga" = no ; then
+	_mak_saga='DISABLE_SAGA = 1'
+else
+	_mak_saga='# DISABLE_SAGA = 1'
+fi
+
 
 if test -n "$_host"; then
     # Cross-compiling mode - add your target here if needed
@@ -789,6 +797,9 @@
 if test "$_build_queen" = yes ; then
   echo "    Flight of the Amazon Queen"
 fi
+if test "$_build_saga" = yes ; then
+  echo "    SAGA Engine"
+fi
 echo
 
 echo_n "Backend... "
@@ -874,6 +885,7 @@
 $_mak_sword1
 $_mak_sword2
 $_mak_queen
+$_mak_saga
 
 INCLUDES += $INCLUDES
 OBJS += $OBJS





More information about the Scummvm-git-logs mailing list