summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorDave Beckett <dave@dajobe.org>2003-08-31 23:34:21 +0000
committerDave Beckett <dave@dajobe.org>2003-08-31 23:34:21 +0000
commitb864d259ae6706d4d340e956f9119a066781b60f (patch)
tree5847033b781d8d26ece4262646f88eca51b5e9cd /configure.ac
parent72e9a2c32c59a84e405e5664e7ff0c3220a70c71 (diff)
downloadraptor-b864d259ae6706d4d340e956f9119a066781b60f.tar.gz
dmalloc enabled only if dmalloc.h is present
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 1aec1317..131993d0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -724,7 +724,7 @@ CPPFLAGS="-DRAPTOR_INTERNAL=1 $CPPFLAGS"
AC_ARG_WITH(dmalloc, [ --with-dmalloc Use dmalloc debugging library (default=auto)], use_dmalloc="$withval", use_dmalloc="auto")
AC_MSG_CHECKING(using dmalloc library)
if test "$USE_MAINTAINER_MODE" = yes; then
- if test "$ac_cv_header_dmalloc_h"; then
+ if test "$ac_cv_header_dmalloc_h" = yes; then
if test "X$use_dmalloc" = Xauto; then
use_dmalloc=yes
fi