|
From: Andre R. <and...@us...> - 2004-10-23 21:38:09
|
Update of /cvsroot/frontierkernel/Frontier/Common/PCRE In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23434/Frontier/Common/PCRE Modified Files: pcre.c Log Message: Undefine DEBUG and DPRINTF from system headers and use our own definition. We don't usually want to debug the regular expression engine itself, even when we are running a debug build of Frontier. Index: pcre.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/PCRE/pcre.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** pcre.c 9 Oct 2004 19:00:07 -0000 1.1 --- pcre.c 23 Oct 2004 21:38:01 -0000 1.2 *************** *** 36,39 **** --- 36,41 ---- /* #define DEBUG */ + #undef DEBUG /* 2004-10-23 aradke: don't pick these up from system headers */ + #undef DPRINTF /* Use a macro for debugging printing, 'cause that eliminates the use of #ifdef |