diff options
author | unknown <monty@mysql.com> | 2005-01-26 16:07:53 +0200 |
---|---|---|
committer | unknown <monty@mysql.com> | 2005-01-26 16:07:53 +0200 |
commit | 3c3ca269ec47566ed9a588c52c3671ca4225e53a (patch) | |
tree | 2b90bb4ebf84a63136bafd6b3aae767628e376f5 /configure.in | |
parent | a898252a45b97a5bc3200c48bedb7471c588c712 (diff) | |
download | mariadb-git-3c3ca269ec47566ed9a588c52c3671ca4225e53a.tar.gz |
Only enable Innodb extra debugging when using the --debug=full configure option
BUILD/SETUP.sh:
Abort if wrong options
BUILD/compile-pentium64-debug:
Always use full debugging
innobase/fil/fil0fil.c:
Fixed wrong printf() format
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 3e9ea6eebe7..985b5923c5c 100644 --- a/configure.in +++ b/configure.in @@ -1685,8 +1685,8 @@ then elif test "$with_debug" = "full" then # Full debug. Very slow in some cases - CFLAGS="$DEBUG_CFLAGS -DDBUG_ON -DSAFE_MUTEX -DSAFEMALLOC $CFLAGS" - CXXFLAGS="$DEBUG_CXXFLAGS -DDBUG_ON -DSAFE_MUTEX -DSAFEMALLOC $CXXFLAGS" + CFLAGS="$DEBUG_CFLAGS -DDBUG_ON -DSAFE_MUTEX -DSAFEMALLOC -DUNIV_DEBUG $CFLAGS" + CXXFLAGS="$DEBUG_CXXFLAGS -DDBUG_ON -DSAFE_MUTEX -DSAFEMALLOC -DUNIV_DEBUG $CXXFLAGS" else # Optimized version. No debug CFLAGS="$OPTIMIZE_CFLAGS -DDBUG_OFF $CFLAGS" |