diff --git a/CVS-INFO b/CVS-INFO
index 40bccf7801bdc88da6083ce81dbd72297d06b0ab..985b32c64583286b60708880d8cc4a9c0468bdf1 100644
--- a/CVS-INFO
+++ b/CVS-INFO
@@ -16,8 +16,8 @@ Compile and build instructions follow below.
   CHANGES.$year contains changes for the particular year.
 
   tests/memanalyze.pl
-                is for analyzing the output generated by curl if -DMALLOCDEBUG
-                is used when compiling
+                is for analyzing the output generated by curl if -DCURLDEBUG
+                is used when compiling (run configure with --enable-debug)
 
   buildconf     builds the makefiles and configure stuff
 
diff --git a/configure.ac b/configure.ac
index 0430e9722c20ee8bc42093ab11aabb00ba1a4b24..f4d01bf77d122d5a41c803d03c2a557eb4bdcb4e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -931,7 +931,7 @@ AC_HELP_STRING([--disable-debug],[Disable debug options]),
        ;;
   *)   AC_MSG_RESULT(yes)
 
-    CPPFLAGS="$CPPFLAGS -DMALLOCDEBUG"
+    CPPFLAGS="$CPPFLAGS -DCURLDEBUG"
     CFLAGS="$CFLAGS -g" 
     if test "$GCC" = "yes"; then
        CFLAGS="$CFLAGS -W -Wall -Wwrite-strings -pedantic -Wundef -Wpointer-arith -Wnested-externs"