[Scummvm-cvs-logs] scummvm master -> 5fa6bb238d26b661551e45508b9c3902c85d6d01

lordhoto lordhoto at gmail.com
Tue Sep 17 02:21:07 CEST 2013


This automated email contains information about 3 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
960320ddb7 BUILD: Disable Full Pipe engine by default.
eb84a918f0 BASE: Add feature string for libjpeg support.
5fa6bb238d BASE: Add feature string for libpng support.


Commit: 960320ddb73e0752131bb22f0faa0b6f0270f694
    https://github.com/scummvm/scummvm/commit/960320ddb73e0752131bb22f0faa0b6f0270f694
Author: Johannes Schickel (lordhoto at scummvm.org)
Date: 2013-09-16T17:19:44-07:00

Commit Message:
BUILD: Disable Full Pipe engine by default.

The engine is still WIP and should not be enabled yet.

Changed paths:
    engines/configure.engines



diff --git a/engines/configure.engines b/engines/configure.engines
index 3c7397f..20e5a56 100644
--- a/engines/configure.engines
+++ b/engines/configure.engines
@@ -13,7 +13,7 @@ add_engine cruise "Cinematique evo 2" yes
 add_engine draci "Dragon History" yes
 add_engine drascula "Drascula: The Vampire Strikes Back" yes
 add_engine dreamweb "Dreamweb" yes
-add_engine fullpipe "Full Pipe" yes
+add_engine fullpipe "Full Pipe" no
 add_engine gob "Gobli*ns" yes
 add_engine groovie "Groovie" yes "groovie2" "7th Guest"
 add_engine groovie2 "Groovie 2 games" no "" "" "jpeg"


Commit: eb84a918f0e01cd7c5bcf5667d0bb0a48f4046a8
    https://github.com/scummvm/scummvm/commit/eb84a918f0e01cd7c5bcf5667d0bb0a48f4046a8
Author: Johannes Schickel (lordhoto at scummvm.org)
Date: 2013-09-16T17:19:51-07:00

Commit Message:
BASE: Add feature string for libjpeg support.

Changed paths:
    base/version.cpp



diff --git a/base/version.cpp b/base/version.cpp
index 89fae90..dd8c34e 100644
--- a/base/version.cpp
+++ b/base/version.cpp
@@ -129,4 +129,8 @@ const char *gScummVMFeatures = ""
 #ifdef USE_FREETYPE2
 	"FreeType2 "
 #endif
+
+#ifdef USE_JPEG
+	"JPEG "
+#endif
 	;


Commit: 5fa6bb238d26b661551e45508b9c3902c85d6d01
    https://github.com/scummvm/scummvm/commit/5fa6bb238d26b661551e45508b9c3902c85d6d01
Author: Johannes Schickel (lordhoto at scummvm.org)
Date: 2013-09-16T17:19:51-07:00

Commit Message:
BASE: Add feature string for libpng support.

Changed paths:
    base/version.cpp



diff --git a/base/version.cpp b/base/version.cpp
index dd8c34e..c55bd63 100644
--- a/base/version.cpp
+++ b/base/version.cpp
@@ -133,4 +133,8 @@ const char *gScummVMFeatures = ""
 #ifdef USE_JPEG
 	"JPEG "
 #endif
+
+#ifdef USE_PNG
+	"PNG "
+#endif
 	;






More information about the Scummvm-git-logs mailing list