Changeset 908
- Timestamp:
- 09/05/07 11:00:31 (1 year ago)
- Files:
-
- cherokee/trunk/ChangeLog (modified) (1 diff)
- cherokee/trunk/cherokee/pcre/pcre_compile.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
cherokee/trunk/ChangeLog
r907 r908 1 2007-08-04 Juan Badia <jubapa@gmail.com> 2 3 * cherokee/pcre/pcre_compile.c: This solves the error when I try 4 to compile cherokee-trunk with -DDEBUG. However it doesn't create 5 the file pcre_printint.src, neither declares the fucntion 6 pcre_printint. 7 1 8 2007-09-04 Alvaro Lopez Ortega <alvaro@alobbs.com> 2 9 cherokee/trunk/cherokee/pcre/pcre_compile.c
r905 r908 51 51 #include "pcre_internal.h" 52 52 53 54 /* When DEBUG is defined, we need the pcre_printint() function, which is also55 used by pcretest. DEBUG is not defined when building a production library. */56 57 #ifdef DEBUG58 #include "pcre_printint.src"59 #endif60 53 61 54 … … 6040 6033 } 6041 6034 6042 pcre_printint(re, stdout, TRUE);6043 6035 6044 6036 /* This check is done here in the debugging case so that the code that