summaryrefslogtreecommitdiff
path: root/m4macros
diff options
context:
space:
mode:
authorNick Schermer <nick@xfce.org>2012-04-13 23:46:50 +0200
committerNick Schermer <nick@xfce.org>2012-04-13 23:46:50 +0200
commite13cc0004949cfc25e15d53f759e390089440e94 (patch)
treee2f2850dc3c0e4b0f64bd85a22ddef77f57b34f8 /m4macros
parent286be3696483d5fcd5633371b23cbdca6a4e06fd (diff)
downloadxfce4-dev-tools-e13cc0004949cfc25e15d53f759e390089440e94.tar.gz
Never disable checks.
This disables the g_return_ macros, and quite often we rely on that. So for the sake of stability, disable those.
Diffstat (limited to 'm4macros')
-rw-r--r--m4macros/xdt-features.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/m4macros/xdt-features.m4 b/m4macros/xdt-features.m4
index 129d5ef..c5f5583 100644
--- a/m4macros/xdt-features.m4
+++ b/m4macros/xdt-features.m4
@@ -119,7 +119,7 @@ AC_HELP_STRING([--disable-debug], [Include no debugging support]),
CPPFLAGS="$CPPFLAGS -DNDEBUG"
if test x"$enable_debug" = x"no"; then
- CPPFLAGS="$CPPFLAGS -DG_DISABLE_CAST_CHECKS -DG_DISABLE_ASSERT -DG_DISABLE_CHECKS"
+ CPPFLAGS="$CPPFLAGS -DG_DISABLE_CAST_CHECKS -DG_DISABLE_ASSERT"
AC_MSG_RESULT([no])
else
AC_MSG_RESULT([minimum])