diff options
author | johans <johans@FreeBSD.org> | 2009-03-06 20:04:11 +0800 |
---|---|---|
committer | johans <johans@FreeBSD.org> | 2009-03-06 20:04:11 +0800 |
commit | 22042d5823770cbfc2dfe8e5204aeca8bbd07a5e (patch) | |
tree | 6278b6ba7abe11dddf84df2261faaaa99bc5a989 /x11/xstroke | |
parent | cda4cb0e938960d41d98a51ee53848b56f54c6cc (diff) | |
download | freebsd-ports-gnome-22042d5823770cbfc2dfe8e5204aeca8bbd07a5e.tar.gz freebsd-ports-gnome-22042d5823770cbfc2dfe8e5204aeca8bbd07a5e.tar.zst freebsd-ports-gnome-22042d5823770cbfc2dfe8e5204aeca8bbd07a5e.zip |
- Update bison to 2.4.1, see announcements for important changes:
http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00000.html
http://lists.gnu.org/archive/html/bug-bison/2008-12/msg00000.html
- Take over bison maintainership - as approved by portmgr (marcus)
- Add patches for ports to compile with new bison:
Replace %{ .. %} with %code { .. } where required
and accommodate stricter typing requirements
Thanks to pav for an exp-run on pointyhat
PR: ports/131640
Approved by: portmgr (pav)
Diffstat (limited to 'x11/xstroke')
-rw-r--r-- | x11/xstroke/files/patch-rec_parse.y | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/x11/xstroke/files/patch-rec_parse.y b/x11/xstroke/files/patch-rec_parse.y index 07f32db50578..3e2e427de96a 100644 --- a/x11/xstroke/files/patch-rec_parse.y +++ b/x11/xstroke/files/patch-rec_parse.y @@ -1,6 +1,15 @@ ---- rec_parse.y.orig Mon Dec 2 11:54:46 2002 -+++ rec_parse.y Mon Dec 2 11:55:02 2002 -@@ -162,12 +162,14 @@ +--- rec_parse.y.orig 2001-12-10 18:01:17.000000000 +0100 ++++ rec_parse.y 2009-03-03 00:57:09.000000000 +0100 +@@ -141,7 +141,7 @@ mode_decl : MODE STRING + | MODE STRING + { + /* Do this first so the default mode gets set correctly*/ +- $$ = rec_get_mode((rec_t *) rec, $2); ++ $<rec_mode>$ = rec_get_mode((rec_t *) rec, $2); + } + ':' mode_id_list + { +@@ -162,12 +162,14 @@ mode_id_list : mode_id $$ = $1; rec_mode_list_append(&$$, $3); } |