In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/b3045d9c1f82f3a16ffa240a2b4e501855d2f95e?hp=736be88fdd627ea774a29942bde021e39c4e7d8e>
- Log ----------------------------------------------------------------- commit b3045d9c1f82f3a16ffa240a2b4e501855d2f95e Author: Father Chrysostomos <[email protected]> Date: Tue Sep 25 18:00:42 2012 -0700 Restore perly.o build with -DDEBUGGING ----------------------------------------------------------------------- Summary of changes: perly.c | 13 +++++++++---- 1 files changed, 9 insertions(+), 4 deletions(-) diff --git a/perly.c b/perly.c index c83a932..0f1b7a8 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 */ -- Perl5 Master Repository
