aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schickel2013-01-26 15:21:44 +0100
committerJohannes Schickel2013-01-26 15:27:34 +0100
commit3a7627812d9ce50408ec4eab2381e8072c733bf1 (patch)
tree58ea2488b2648256931ba8110447711462a1298e
parent69424b71bd027e4eb29ecadaca5271c5d677cac3 (diff)
downloadscummvm-rg350-3a7627812d9ce50408ec4eab2381e8072c733bf1.tar.gz
scummvm-rg350-3a7627812d9ce50408ec4eab2381e8072c733bf1.tar.bz2
scummvm-rg350-3a7627812d9ce50408ec4eab2381e8072c733bf1.zip
CONFIGURE: Never enable release_build by default.
This changes the default for Caanoo, GP2x, GP2xWiz, OpenPandora and PS2. For those now we only disable debug symbols and enable optimizations by default.
-rwxr-xr-xconfigure7
1 files changed, 1 insertions, 6 deletions
diff --git a/configure b/configure
index 91364eb304..f23d0ade59 100755
--- a/configure
+++ b/configure
@@ -1425,15 +1425,10 @@ fi
case $_host in
caanoo | gp2x | gp2xwiz | openpandora | ps2)
if test "$_debug_build" = auto; then
- # If you want to debug one of these platforms, use '--disable-release --enable-debug'
+ # If you want to debug one of these platforms, use '--disable-optimizations --enable-debug'
_debug_build=no
fi
- if test "$_release_build" = auto; then
- # Enable release build by default.
- _release_build=yes
- fi
-
if test "$_optimizations" = auto; then
# Enable optimizations by default.
_optimizations=yes