summaryrefslogtreecommitdiff
path: root/devel/bison/Makefile
diff options
context:
space:
mode:
authormjl <mjl>2002-01-31 13:43:57 +0000
committermjl <mjl>2002-01-31 13:43:57 +0000
commit3f0839f561ddf9465c35b5d849448dbfd45ea14d (patch)
tree8b3320acda4c75cbb225326b7e05fc4114527474 /devel/bison/Makefile
parentc8d4013388175281a3362eb8da69cb7d0f69ead7 (diff)
downloadpkgsrc-3f0839f561ddf9465c35b5d849448dbfd45ea14d.tar.gz
Update to bison 1.32
* Fix Yacc output file names * Portability fixes * Italian, Dutch, Swedish, Russian translation * Many Bug Fixes * Use of alloca in parsers * When the generated parser lacks debugging code, YYDEBUG is now 0 (as POSIX requires) instead of being undefined. * User Actions Bison has always permitted actions such as { $$ = $1 }: it adds the ending semicolon. Now if in Yacc compatibility mode, the semicolon is no longer output: one has to write { $$ = $1; }. * Better C++ compliance The output parsers try to respect C++ namespaces. * Reduced Grammars Fixed bugs when reporting useless nonterminals. * 64 bit hosts The parsers work properly on 64 bit hosts. * Error messages Some calls to strerror resulted in scrambled or missing error messages. * The verbose report includes the rule line numbers. * Rule line numbers are fixed in traces. * Parse errors Verbose parse error messages from the parsers are better looking. * Fixed parser memory leaks. When the generated parser was using malloc to extend its stacks, the previous allocations were not freed. * Fixed verbose output file. Some newlines were missing. Some conflicts in state descriptions were missing. * Fixed conflict report. Option -v was needed to get the result. * Fixed incorrect processing of some invalid input. * Fixed CPP guards: 9foo.h uses BISON_9FOO_H instead of 9FOO_H. * %token MY_EOF 0 is supported. Before, MY_EOF was silently renumbered as 257. * doc/refcard.tex is updated. * %output, %file-prefix, %name-prefix. * --output * `--defines' and `--graph' have now an optionnal argument which is the output file name. `-d' and `-g' do not change, they do not take any argument. * Portability fixes. * The output file does not define const, as this caused problems when used with common autoconfiguration schemes. If you still use ancient compilers that lack const, compile with the equivalent of the C compiler option `-Dconst='. autoconf's AC_C_CONST macro provides one way to do this. * Added `-g' and `--graph'. * The input and the output files has automatically a similar extension. * NLS support updated; should hopefully be less troublesome. * Added the old Bison reference card. * Added `--locations' and `%locations'. * Added `-S' and `--skeleton'. * `%raw', `-r', `--raw' is disabled. * Special characters are escaped when output. This solves the problems of the #line lines with path names including backslashes. * New directives. * @$ Automatic location tracking.
Diffstat (limited to 'devel/bison/Makefile')
-rw-r--r--devel/bison/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/bison/Makefile b/devel/bison/Makefile
index 39eb42a6005..a4503321342 100644
--- a/devel/bison/Makefile
+++ b/devel/bison/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.24 2001/07/15 16:34:57 jlam Exp $
+# $NetBSD: Makefile,v 1.25 2002/01/31 13:43:57 mjl Exp $
-DISTNAME= bison-1.28
+DISTNAME= bison-1.32
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_GNU:=bison/}