Change the preprocessor symbol DEBUG' to DEBUGGING', since the

former is automatically defined by Cygwin.

[originally from svn r6007]
This commit is contained in:
Simon Tatham
2005-06-24 11:05:43 +00:00
parent 249d345ed4
commit 5fc29f7717
2 changed files with 3 additions and 2 deletions

View File

@ -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