diff options
author | rsn8887 | 2017-03-09 13:47:24 -0600 |
---|---|---|
committer | rsn8887 | 2017-03-09 13:48:09 -0600 |
commit | 0c5ad902dc298e0c5a1442a9c9ecc0adde62114c (patch) | |
tree | 3b9ce437b45b6f17d78b65b338095f32f34344aa | |
parent | 4c3f07b3e066cb6ab5d6d9b6fe4dd106a79cc530 (diff) | |
download | scummvm-rg350-0c5ad902dc298e0c5a1442a9c9ecc0adde62114c.tar.gz scummvm-rg350-0c5ad902dc298e0c5a1442a9c9ecc0adde62114c.tar.bz2 scummvm-rg350-0c5ad902dc298e0c5a1442a9c9ecc0adde62114c.zip |
Revert "TOOLS: configure options for all-unstable-engines"
This reverts commit bd54615363ec96c8decf34cd039017b91c7c279e.
-rwxr-xr-x | configure | 30 |
1 files changed, 0 insertions, 30 deletions
@@ -626,26 +626,6 @@ 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 - engine_enable $engine - fi - 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 - engine_disable ${engine} - fi - done -} - # Enable the given engine engine_enable() { # Get the parameter @@ -966,10 +946,6 @@ 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 all engines which are broken or unsupported - --disable-all-unstable-engines - disable all engines which are broken or unsupported --enable-engine=<engine name>[,<engine name>...] enable engine(s) listed --disable-engine=<engine name>[,<engine name>...] disable engine(s) listed --enable-engine-static=<engine name>[,<engine name>...] @@ -1374,12 +1350,6 @@ 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 - ;; --enable-engine=* | --enable-engines=*) for engine_name in `echo $ac_option | cut -d '=' -f 2- | tr ',' '\n'`; do engine_enable "${engine_name}" |