[Scummvm-cvs-logs] scummvm master -> 4a9b8ee7b964c79f71485dffcdf281032e38d4fb
tsoliman
tarek at bashasoliman.com
Sun Oct 9 08:30:17 CEST 2011
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:
4a9b8ee7b9 CONFIGURE: Removed useless ENGINE_WIP_ defines from config.h
Commit: 4a9b8ee7b964c79f71485dffcdf281032e38d4fb
https://github.com/scummvm/scummvm/commit/4a9b8ee7b964c79f71485dffcdf281032e38d4fb
Author: Tarek Soliman (tsoliman at scummvm.org)
Date: 2011-10-08T23:21:35-07:00
Commit Message:
CONFIGURE: Removed useless ENGINE_WIP_ defines from config.h
This is a holdover from when it was going to warn on a per-engine basis.
This warning is now handled on a per-game basis with ADGF_UNSTABLE and
ADGF_TESTING.
It resulted in a lot of spam in config.h: a define for every single
engine and subengine that looks like this:
define ENGINE_WIP_SCUMM_7_8 false
It was not being used in-tree and I don't see it being used in the near future.
Changed paths:
configure
diff --git a/configure b/configure
index 6d0a392..7f76bee 100755
--- a/configure
+++ b/configure
@@ -3707,13 +3707,9 @@ done
for engine in $_engines; do
engine_build=`get_engine_build $engine`
engine_build_default=`get_engine_build_default $engine`
- engine_wip=false
if test $engine_build != no -a $engine_build_default = no ; then
- engine_wip=true
set_var _tainted_build "yes"
fi
- engine_wip_defname="ENGINE_WIP_`echo $engine | tr '[a-z]' '[A-Z]'`"
- add_line_to_config_h "#define $engine_wip_defname $engine_wip"
done
add_to_config_h_if_yes `get_var _tainted_build` '#define TAINTED_BUILD'
More information about the Scummvm-git-logs
mailing list