From: Peep P. <so...@us...> - 2004-03-19 14:57:29
|
Update of /cvsroot/agd/server/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13721 Modified Files: compile.c Log Message: Fixed compilation. Index: compile.c =================================================================== RCS file: /cvsroot/agd/server/src/compile.c,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- compile.c 18 Mar 2004 20:48:52 -0000 1.13 +++ compile.c 19 Mar 2004 14:47:40 -0000 1.14 @@ -19,9 +19,9 @@ static array_t *curr_block; static array_t block_history; -/*#ifdef YYDEBUG*/ +#ifdef YYDEBUG extern int yydebug; -/*#endif*/ +#endif static int start_with_newline; @@ -568,7 +568,7 @@ parse_init(); curr_fn = ob->name; -#if defined(DEBUG)/* && defined(YYDEBUG)*/ +#if defined(DEBUG) && defined(YYDEBUG) if(conf.debuglevel > 4) { yydebug = 1; } |