diff options
author | Johannes Schickel | 2010-06-24 22:33:49 +0000 |
---|---|---|
committer | Johannes Schickel | 2010-06-24 22:33:49 +0000 |
commit | d783ca972abee9702e6abf31f13188fc59d7d32d (patch) | |
tree | 9657fcd4bb3759d9b46e45abd261e5799e8cce63 /configure | |
parent | e7f3ddf2dbb379ee41d82347f928d5f8d6f0e60d (diff) | |
download | scummvm-rg350-d783ca972abee9702e6abf31f13188fc59d7d32d.tar.gz scummvm-rg350-d783ca972abee9702e6abf31f13188fc59d7d32d.tar.bz2 scummvm-rg350-d783ca972abee9702e6abf31f13188fc59d7d32d.zip |
Disable addition of "SCUMMVM_SVN_REVISION" to the version string, in case --enable-release was specified on configure run.
svn-id: r50246
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1042,7 +1042,9 @@ fi if test "$_release_build" = yes; then # Release mode enabled: enable optimizations. This also # makes it possible to use -Wuninitialized, so let's do that. - CXXFLAGS="$CXXFLAGS -O2 -Wuninitialized" + # We will also add a define, which indicates we are doing + # an build for a release version. + CXXFLAGS="$CXXFLAGS -O2 -Wuninitialized -DRELEASE_BUILD" fi |