From 5fc29f7717e8c7b23c3c2debfa37a4ea5aef340f Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Fri, 24 Jun 2005 11:05:43 +0000 Subject: Change the preprocessor symbol `DEBUG' to `DEBUGGING', since the former is automatically defined by Cygwin. [originally from svn r6007] --- puzzles.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'puzzles.h') diff --git a/puzzles.h b/puzzles.h index 0bdb581..09848d7 100644 --- a/puzzles.h +++ b/puzzles.h @@ -122,7 +122,8 @@ struct config_item { * Platform routines */ -#ifdef DEBUG +/* We can't use #ifdef DEBUG, because Cygwin defines it by default. */ +#ifdef DEBUGGING #define debug(x) (debug_printf x) void debug_printf(char *fmt, ...); #else -- cgit v1.1