[Scummvm-git-logs] scummvm master -> 0f9abb8e62ba5b031579129e04989c07f139b5f4

bluegr bluegr at gmail.com
Thu Jun 20 04:19:22 CEST 2019


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

Summary:
0f9abb8e62 CONFIGURE: Add --enable-all-unstable-engines option


Commit: 0f9abb8e62ba5b031579129e04989c07f139b5f4
    https://github.com/scummvm/scummvm/commit/0f9abb8e62ba5b031579129e04989c07f139b5f4
Author: Cameron Cawley (ccawley2011 at gmail.com)
Date: 2019-06-20T05:19:18+03:00

Commit Message:
CONFIGURE: Add --enable-all-unstable-engines option

Changed paths:
    configure


diff --git a/configure b/configure
index 6edc2f9..3581770 100755
--- a/configure
+++ b/configure
@@ -662,6 +662,16 @@ engine_disable_all() {
 	done
 }
 
+# Enable all unstable engines
+engine_enable_all_unstable() {
+	for engine in $_engines; do
+		engine_build_default=`get_engine_build_default $engine`
+		if test $engine_build_default = no ; then
+			set_var _engine_${engine}_build "yes"
+		fi
+	done
+}
+
 # Disable all unstable engines
 engine_disable_all_unstable() {
 	for engine in $_engines; do
@@ -992,6 +1002,8 @@ Game engines:
   --enable-all-engines     enable all engines, including those which are
                            broken or unsupported
   --disable-all-engines    disable all engines
+  --enable-all-unstable-engines     enable the engines which are
+                                    broken or unsupported
   --disable-all-unstable-engines    disable only the engines which are
                                     broken or unsupported
   --enable-engine=<engine name>[,<engine name>...] enable engine(s) listed
@@ -1456,6 +1468,9 @@ for ac_option in $@; do
 	--disable-all-engines)
 		engine_disable_all
 		;;
+	--enable-all-unstable-engines)
+		engine_enable_all_unstable
+		;;
 	--disable-all-unstable-engines)
 		engine_disable_all_unstable
 		;;





More information about the Scummvm-git-logs mailing list