[Scummvm-cvs-logs] SF.net SVN: scummvm:[53419] scummvm/trunk/configure
thebluegr at users.sourceforge.net
thebluegr at users.sourceforge.net
Wed Oct 13 15:36:56 CEST 2010
Revision: 53419
http://scummvm.svn.sourceforge.net/scummvm/?rev=53419&view=rev
Author: thebluegr
Date: 2010-10-13 13:36:55 +0000 (Wed, 13 Oct 2010)
Log Message:
-----------
CONFIGURE: Fixed a bug with --disable-theoradec and made libtheoradec optional for
building sword25
If libtheoradec is missing then the engine still builds if requested, but the
videos will be disabled (note that running the game with videos disabled is
still untested)
Modified Paths:
--------------
scummvm/trunk/configure
Modified: scummvm/trunk/configure
===================================================================
--- scummvm/trunk/configure 2010-10-13 13:32:30 UTC (rev 53418)
+++ scummvm/trunk/configure 2010-10-13 13:36:55 UTC (rev 53419)
@@ -802,8 +802,8 @@
--enable-indeo3) _indeo3=yes ;;
--disable-png) _png=no ;;
--enable-png) _png=yes ;;
- --disable-theoradec) _png=no ;;
- --enable-theoradec) _theoradec=yes ;;
+ --disable-theoradec) _theoradec=no ;;
+ --enable-theoradec) _theoradec=yes ;;
--disable-fluidsynth) _fluidsynth=no ;;
--enable-readline) _readline=yes ;;
--disable-readline) _readline=no ;;
@@ -2422,11 +2422,6 @@
echo "$_theoradec"
fi
-if test `get_engine_build sword25` = yes && test ! "$_theoradec" = yes ; then
- echo "...disabling Broken Sword 2.5 engine. libtheoradec is required"
- engine_disable sword25
-fi
-
#
# Check for SEQ MIDI
#
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