From 49601a7ac8078bcdb1013b7b80018e2ab073b77f Mon Sep 17 00:00:00 2001 From: rsn8887 Date: Thu, 6 Jun 2019 17:41:47 -0500 Subject: CONFIGURE: Add --disable-all-unstable-engines for use with buildbot --- configure | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'configure') diff --git a/configure b/configure index 68e977d51b..a8d48ff66a 100755 --- a/configure +++ b/configure @@ -662,6 +662,16 @@ engine_disable_all() { done } +# Disable all unstable engines +engine_disable_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 "no" + fi + done +} + # Enable the given engine engine_enable() { # Get the parameter @@ -982,6 +992,8 @@ Game engines: --enable-all-engines enable all engines, including those which are broken or unsupported --disable-all-engines disable all engines + --disable-all-unstable-engines disable only the engines which are + broken or unsupported --enable-engine=[,...] enable engine(s) listed --disable-engine=[,...] disable engine(s) listed --enable-engine-static=[,...] @@ -1444,6 +1456,9 @@ for ac_option in $@; do --disable-all-engines) engine_disable_all ;; + --disable-all-unstable-engines) + engine_disable_all_unstable + ;; --enable-engine=* | --enable-engines=*) for engine_name in `echo $ac_option | cut -d '=' -f 2- | tr ',' '\n'`; do engine_enable "${engine_name}" -- cgit v1.2.3