diff options
author | joreland@mysql.com <> | 2004-08-05 12:54:59 +0200 |
---|---|---|
committer | joreland@mysql.com <> | 2004-08-05 12:54:59 +0200 |
commit | b1fd4d883956c0b1dbad1539e4002fc65ba51f5e (patch) | |
tree | 4811afbef7d8a7f2232b0bf157e041af8c4f72ab /configure.in | |
parent | f8c0850521709173112cb2be1e9668d32e0d9b55 (diff) | |
download | mariadb-git-b1fd4d883956c0b1dbad1539e4002fc65ba51f5e.tar.gz |
wl2010
Added NDB_DEBUG(--with-debug) and NDB_DEBUG_FULL(--with-debug=full)
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 afcc60942ce..b78881a253c 100644 --- a/configure.in +++ b/configure.in @@ -2961,10 +2961,10 @@ then if test "$with_debug" = "yes" then # Medium debug. - NDB_DEFS="-DVM_TRACE -DERROR_INSERT -DARRAY_GUARD" + NDB_DEFS="-DNDB_DEBUG -DVM_TRACE -DERROR_INSERT -DARRAY_GUARD" elif test "$with_debug" = "full" then - NDB_DEFS="-DVM_TRACE -DERROR_INSERT -DARRAY_GUARD" + NDB_DEFS="-DNDB_DEBUG_FULL -DVM_TRACE -DERROR_INSERT -DARRAY_GUARD" else NDB_DEFS="-DNDEBUG" fi |