From fed61462be281c568df6407f94ea519748f0b720 Mon Sep 17 00:00:00 2001 From: Daniel Stone Date: Tue, 23 Aug 2005 08:58:40 +0000 Subject: [PATCH] Fix up warning on debugging. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 9454d06351..de6ba29523 100644 --- a/configure.ac +++ b/configure.ac @@ -451,7 +451,7 @@ AC_DEFINE_UNQUOTED(OSVENDOR, ["$OSVENDOR"], [Operating System Vendor]) AC_DEFINE(DDXOSINIT, 1, [Use OsVendorInit]) AC_DEFINE(SERVER_LOCK, 1, [Use a lock to prevent multiple servers on a display]) AC_DEFINE(SMART_SCHEDULE, 1, [Include time-based scheduler]) -AM_CONDITIONAL(DEBUG, [Enable debugging code], test "x$DEBUGGING" = xyes) +AM_CONDITIONAL(DEBUG, test "x$DEBUGGING" = xyes) if ! test "x$DEBUGGING" = xyes; then AC_DEFINE(NDEBUG, 1, [Disable some debugging code])