diff options
author | Johan van Selst <johans@FreeBSD.org> | 2009-03-06 20:04:11 +0800 |
---|---|---|
committer | Johan van Selst <johans@FreeBSD.org> | 2009-03-06 20:04:11 +0800 |
commit | ec2d095bd091c2912068bffa20155527f756b57f (patch) | |
tree | c763a43d7fe92b28cdf6e5904f10ff6e66c792c3 /x11/xstroke | |
parent | c99d0d73375c262760701431d7a9cd4e52beafbb (diff) | |
download | freebsd-ports-gnome-ec2d095bd091c2912068bffa20155527f756b57f.tar.gz freebsd-ports-gnome-ec2d095bd091c2912068bffa20155527f756b57f.tar.zst freebsd-ports-gnome-ec2d095bd091c2912068bffa20155527f756b57f.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); } |