Quote:
* Fixed compile errors for noDEBUG and noIMDB modes.
|
So, apparently, I didn't
Use #define debug_mode true
Maybe next time... or, if you are desperate, put:
PHP Code:
#if ( debug_mode == TRUE )
int debug_log(char *fmt, ...);
#else
# define debug_log
# define debug_log_noTime
#endif
instead of
PHP Code:
int debug_log(char *fmt, ...);
in imdb.h