1
0
Fork 0

avoid undef'ing DEBUG so one can put DEBUG into CFLAGS

git-svn-id: svn://svn.lighttpd.net/xcache/trunk@205 c26eb9a1-5813-0410-bd6c-c2e55f420ca7
This commit is contained in:
Xuefer 2006-10-01 08:59:23 +00:00
parent 5230b6047f
commit 4438aa2481
2 changed files with 7 additions and 2 deletions

View File

@ -18,7 +18,10 @@ typedef HashTable *coverager_t;
static char *xc_coveragedump_dir = NULL;
static zend_compile_file_t *origin_compile_file;
#undef DEBUG
#if 0
#define DEBUG
#endif
/* dumper */
static void xc_destroy_coverage(void *pDest) /* {{{ */
{

View File

@ -1,5 +1,7 @@
#undef DEBUG
#if 0
#define DEBUG
#endif
/* {{{ macros */
#include <stdlib.h>