summaryrefslogtreecommitdiff
path: root/perl.h
diff options
context:
space:
mode:
authorMarnix (ain't unix!) A. van Ammers <pttesac!marnix!vanam>1988-01-29 19:58:36 +0000
committerLarry Wall <lwall@jpl-devvax.jpl.nasa.gov>1988-01-29 19:58:36 +0000
commitd96024cf1e3df534df4aa43f818004cbc6477660 (patch)
tree71a70d586b52938a588c9278626b663046a478ec /perl.h
parenta559c25918b1466cdb50c9f978a86f01be0bac10 (diff)
downloadperl-d96024cf1e3df534df4aa43f818004cbc6477660.tar.gz
perl 1.0 patch 9: 3 portability problems
There's a #define YYDEBUG; in perl.h that ought to be #define YYDEBUG 1. Interesting that it works the former way on any systems at all. Patch 2 was defective and introduced a couple of lines with missing right parens. Learn something old every day... Some awks can't handle awk '$6 != "" {print substr($6,2,100)}' </tmp/Cppsym2$$ ;; if field 6 doesn't exist. Changed conditional to NF > 5. There was also a problem that I fixed in metaconfig that involved Configure grepping .SH files out of MANIFEST when the .SH was only in the commentary. This doesn't affect perl's Configure because there aren't any comments containing .SH in the MANIFEST file. But that's the nice thing about metaconfig--you generate a new Configure script and also get the changes you don't need (yet).
Diffstat (limited to 'perl.h')
-rw-r--r--perl.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/perl.h b/perl.h
index 9b877f3e30..341afa8008 100644
--- a/perl.h
+++ b/perl.h
@@ -1,6 +1,9 @@
-/* $Header: perl.h,v 1.0.1.3 88/01/28 10:24:17 root Exp $
+/* $Header: perl.h,v 1.0.1.4 88/01/30 08:54:00 root Exp $
*
* $Log: perl.h,v $
+ * Revision 1.0.1.4 88/01/30 08:54:00 root
+ * patch9: changed #define YYDEBUG; to #define YYDEBUG 1
+ *
* Revision 1.0.1.3 88/01/28 10:24:17 root
* patch8: added eval operator.
*
@@ -184,7 +187,7 @@ EXT int debug INIT(0);
EXT int dlevel INIT(0);
EXT char debname[40];
EXT char debdelim[40];
-#define YYDEBUG;
+#define YYDEBUG 1
extern int yydebug;
#endif