diff options
author | Sergei Golubchik <sergii@pisem.net> | 2011-01-26 14:16:13 +0100 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2011-01-26 14:16:13 +0100 |
commit | d3135162946d95e6279bd70a0e16aec19f569115 (patch) | |
tree | 60068131faf95070a8fac4e8640b1122e121a5c0 /mysys | |
parent | c46305ab4800b8aabbbbec890274994ad4fccc83 (diff) | |
download | mariadb-git-d3135162946d95e6279bd70a0e16aec19f569115.tar.gz |
fix "./configure --with-debug" builds
(without CFLAGS=-DSAFEMALLOC).
Diffstat (limited to 'mysys')
-rw-r--r-- | mysys/safemalloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/safemalloc.c b/mysys/safemalloc.c index 0d0ae2dabe5..16489ccc022 100644 --- a/mysys/safemalloc.c +++ b/mysys/safemalloc.c @@ -60,7 +60,7 @@ */ #ifndef SAFEMALLOC -#define SAFEMALLOC /* Get protos from my_sys */ +#define SAFEMALLOC 1 /* Get protos from my_sys */ #endif #include "mysys_priv.h" |