View Single Post
Old 02-06-2005, 11:53 AM  
esmandil
Senior Member
 
Join Date: Oct 2004
Posts: 107
Default

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
esmandil is offline   Reply With Quote