浏览代码

debug is deactivated by default

Thomas Guillem 9 年之前
父节点
当前提交
dd7e569ec4
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      configure.ac

+ 2 - 2
configure.ac

@@ -38,10 +38,10 @@ AC_ARG_ENABLE([programs],
 )
 
 AC_ARG_ENABLE([debug],
-  AS_HELP_STRING([--enable-debug], [Additional debugging features [default=yes]])
+  AS_HELP_STRING([--enable-debug], [Additional debugging features [default=no]])
 )
 
-AM_CONDITIONAL([DEBUG], [test x"$enable_debug" != x"no"])
+AM_CONDITIONAL([DEBUG], [test x"$enable_debug" == x"yes"])
 AM_CONDITIONAL([PROGRAMS], [test x"$enable_programs" != x"no"])
 
 LT_INIT