diff options
author | monty@mysql.com <> | 2005-01-26 16:07:53 +0200 |
---|---|---|
committer | monty@mysql.com <> | 2005-01-26 16:07:53 +0200 |
commit | f16b456ddc79c48af9070c79cb1593c0e1f6d989 (patch) | |
tree | 2b90bb4ebf84a63136bafd6b3aae767628e376f5 /configure.in | |
parent | a0175a9a6be4f57bdc416305e180b6a2561c1acc (diff) | |
download | mariadb-git-f16b456ddc79c48af9070c79cb1593c0e1f6d989.tar.gz |
Only enable Innodb extra debugging when using the --debug=full configure option
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" |