[Scummvm-cvs-logs] CVS: scummvm Makefile.common,1.87,1.88 configure,1.92,1.93
Pawel Kolodziejski
aquadran at users.sourceforge.net
Wed May 5 00:26:12 CEST 2004
- Previous message: [Scummvm-cvs-logs] CVS: scummvm/base plugins.cpp,1.31,1.32 plugins.h,1.19,1.20
- Next message: [Scummvm-cvs-logs] CVS: scummvm/dists/msvc7 awe.vcproj,NONE,1.1 scummvm.sln,1.9,1.10 scummvm.vcproj,1.28,1.29
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/scummvm/scummvm
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2783
Modified Files:
Makefile.common configure
Log Message:
adding initial code for Another World engine
Index: Makefile.common
===================================================================
RCS file: /cvsroot/scummvm/scummvm/Makefile.common,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -d -r1.87 -r1.88
--- Makefile.common 16 Apr 2004 06:56:28 -0000 1.87
+++ Makefile.common 5 May 2004 07:25:30 -0000 1.88
@@ -91,6 +91,12 @@
MODULES += kyra
endif
+ifdef DISABLE_AWE
+DEFINES += -DDISABLE_AWE
+else
+MODULES += awe
+endif
+
# After the game specific modules follow the shared modules
MODULES += \
gui \
Index: configure
===================================================================
RCS file: /cvsroot/scummvm/scummvm/configure,v
retrieving revision 1.92
retrieving revision 1.93
diff -u -d -r1.92 -r1.93
--- configure 30 Apr 2004 10:40:18 -0000 1.92
+++ configure 5 May 2004 07:25:31 -0000 1.93
@@ -40,6 +40,7 @@
_build_queen=yes
_build_kyra=no
_build_saga=no
+_build_awe=no
_need_memalign=no
_build_plugins=no
# more defaults
@@ -222,6 +223,7 @@
--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-awe build the Another World engine
--enable-plugins build engines as loadable modules instead of
static linking them
@@ -272,6 +274,7 @@
--disable-queen) _build_queen=no ;;
--enable-kyra) _build_kyra=yes ;;
--enable-saga) _build_saga=yes ;;
+ --enable-awe) _build_awe=yes ;;
--enable-alsa) _alsa=yes ;;
--disable-alsa) _alsa=no ;;
--enable-vorbis) _vorbis=yes ;;
@@ -509,6 +512,11 @@
_mak_saga='# DISABLE_SAGA = 1'
fi
+if test "$_build_awe" = no ; then
+ _mak_awe='DISABLE_AWE = 1'
+else
+ _mak_awe='# DISABLE_AWE = 1'
+fi
if test -n "$_host"; then
# Cross-compiling mode - add your target here if needed
@@ -892,6 +900,10 @@
if test "$_build_kyra" = yes ; then
echo " Legend of Kyrandia"
fi
+if test "$_build_awe" = yes ; then
+ echo " Another World"
+fi
+
echo
echo_n "Backend... "
- Previous message: [Scummvm-cvs-logs] CVS: scummvm/base plugins.cpp,1.31,1.32 plugins.h,1.19,1.20
- Next message: [Scummvm-cvs-logs] CVS: scummvm/dists/msvc7 awe.vcproj,NONE,1.1 scummvm.sln,1.9,1.10 scummvm.vcproj,1.28,1.29
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Scummvm-git-logs
mailing list