diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2017-01-13 15:21:04 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2017-01-13 15:21:04 +0800 |
commit | 3317a73cd71b9a3e0efd4ade02683e304ac64e3e (patch) | |
tree | ac57f5ed25dbd047668d7b3028d2914c5ee6ec4c /editors | |
parent | 42ac3d2c8fd545d6f2fe5f9471138f7c8460ff63 (diff) | |
download | freebsd-ports-gnome-3317a73cd71b9a3e0efd4ade02683e304ac64e3e.tar.gz freebsd-ports-gnome-3317a73cd71b9a3e0efd4ade02683e304ac64e3e.tar.zst freebsd-ports-gnome-3317a73cd71b9a3e0efd4ade02683e304ac64e3e.zip |
Update to 3.0.4
- Add LICENSE
- Use USES=localbase
- Use PORTDATA
- Sort PLIST
Changes: http://git.savannah.gnu.org/cgit/bison.git/tree/NEWS
Differential Revision: https://reviews.FreeBSD.org/D9073
PR: 215840
Exp-run by: antoine
Diffstat (limited to 'editors')
-rw-r--r-- | editors/xcoral/files/patch-BR_Parser.c | 35 | ||||
-rw-r--r-- | editors/xcoral/files/patch-BR_Parser.y | 11 |
2 files changed, 46 insertions, 0 deletions
diff --git a/editors/xcoral/files/patch-BR_Parser.c b/editors/xcoral/files/patch-BR_Parser.c new file mode 100644 index 000000000000..5ebeb6122a78 --- /dev/null +++ b/editors/xcoral/files/patch-BR_Parser.c @@ -0,0 +1,35 @@ +--- BR_Parser.c.orig 2002-12-18 07:22:09 UTC ++++ BR_Parser.c +@@ -116,7 +116,7 @@ + + #define YYDEBUG 1 + +-#define BR_YYERROR YYFAIL ++#define BR_YYERROR YYERROR + + + /*-----------------------------------------------------------------------*/ +@@ -960,12 +960,7 @@ static const short yycheck[] = { 1, + #define YYEOF 0 + #define YYACCEPT goto yyacceptlab + #define YYABORT goto yyabortlab +-#define YYERROR goto yyerrlab1 +-/* Like YYERROR except do call yyerror. +- This remains here temporarily to ease the +- transition to the new meaning of YYERROR, for GCC. +- Once GCC version 2 has supplanted version 1, this can go. */ +-#define YYFAIL goto yyerrlab ++#define YYERROR goto yyerrlab + #define YYRECOVERING() (!!yyerrstatus) + #define YYBACKUP(token, value) \ + do \ +@@ -2465,9 +2460,6 @@ yyerrlab: /* here on detecting error * + yyerror("parse error"); + } + +- goto yyerrlab1; +-yyerrlab1: /* here on error raised explicitly by an action */ +- + if (yyerrstatus == 3) + { + /* if just tried and failed to reuse lookahead token after an error, discard it. */ diff --git a/editors/xcoral/files/patch-BR_Parser.y b/editors/xcoral/files/patch-BR_Parser.y new file mode 100644 index 000000000000..7dc0d5642935 --- /dev/null +++ b/editors/xcoral/files/patch-BR_Parser.y @@ -0,0 +1,11 @@ +--- BR_Parser.y.orig 2002-12-18 07:21:52 UTC ++++ BR_Parser.y +@@ -79,7 +79,7 @@ + + #define YYDEBUG 1 + +-#define BR_YYERROR YYFAIL ++#define BR_YYERROR YYERROR + + + /*-----------------------------------------------------------------------*/ |