From: Jack Jansen Date: Wed, 26 Jun 2002 20:41:30 +0000 (+0000) Subject: Undefine DPRINTF before defining it, there was a conflict with some other X-Git-Tag: v2.3c1~5197 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c5601f48393eab55c5b99e5b0ba22d9cd27baaf3;p=thirdparty%2FPython%2Fcpython.git Undefine DPRINTF before defining it, there was a conflict with some other definition. --- diff --git a/Modules/pypcre.c b/Modules/pypcre.c index 5f21005360dc..a6ba17c756f5 100644 --- a/Modules/pypcre.c +++ b/Modules/pypcre.c @@ -577,6 +577,7 @@ restrictions: of #ifdef inline, and there are *still* stupid compilers about that don't like indented pre-processor statements. I suppose it's only been 10 years... */ +#undef DPRINTF #ifdef DEBUG #define DPRINTF(p) printf p #else