From b3045d9c1f82f3a16ffa240a2b4e501855d2f95e Mon Sep 17 00:00:00 2001 From: Father Chrysostomos Date: Tue, 25 Sep 2012 18:00:42 -0700 Subject: Restore perly.o build with -DDEBUGGING --- perly.c | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'perly.c') diff --git a/perly.c b/perly.c index c83a932977..0f1b7a88f9 100644 --- a/perly.c +++ b/perly.c @@ -27,6 +27,13 @@ #include "EXTERN.h" #define PERL_IN_PERLY_C + +#ifdef DEBUGGING +# define YYDEBUG 1 +#else +# define YYDEBUG 0 +#endif + #include "perl.h" typedef unsigned char yytype_uint8; @@ -38,10 +45,8 @@ typedef signed char yysigned_char; /* YYINITDEPTH -- initial size of the parser's stacks. */ #define YYINITDEPTH 200 -#ifdef DEBUGGING -# define YYDEBUG 1 -#else -# define YYDEBUG 0 +#ifndef YY_NULL +# define YY_NULL 0 #endif /* contains all the parser state tables; auto-generated from perly.y */ -- cgit v1.2.1