From 21d9c486c095a03621ab5080a6ebb7ad8a465856 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?ChangZhuo=20Chen=20=28=E9=99=B3=E6=98=8C=E5=80=AC=29?= Date: Fri, 4 Jul 2014 18:25:22 +0800 Subject: [PATCH] Use DEBUG instead of ENABLE_DEBUG in config.h --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 3227a28..b71fb26 100644 --- a/configure.ac +++ b/configure.ac @@ -80,7 +80,7 @@ AC_SUBST(DEPS_LIBS) AC_ARG_ENABLE(debug,AS_HELP_STRING([--enable-debug],[enable debug])) if test "x$enable_debug" = "xyes"; then - AC_DEFINE(ENABLE_DEBUG, 1, "debug") + AC_DEFINE(DEBUG, 1, "debug") fi AM_CONDITIONAL(ENABLE_DEBUG, test "x$enable_debug" = "xyes")