diff options
author | marcus <marcus@FreeBSD.org> | 2002-12-03 00:52:41 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2002-12-03 00:52:41 +0800 |
commit | 13267960658d0134cda57c97204a8f9b676fe56c (patch) | |
tree | 1108e61161c7835b0b308c90b67f7eec54edcd61 /x11/xstroke | |
parent | 658f1260ba571420e4f0b6534997c74f0fbd9926 (diff) | |
download | freebsd-ports-gnome-13267960658d0134cda57c97204a8f9b676fe56c.tar.gz freebsd-ports-gnome-13267960658d0134cda57c97204a8f9b676fe56c.tar.zst freebsd-ports-gnome-13267960658d0134cda57c97204a8f9b676fe56c.zip |
Fix build with bison 1.75.
Reported by: bento
Diffstat (limited to 'x11/xstroke')
-rw-r--r-- | x11/xstroke/files/patch-rec_parse.y | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/x11/xstroke/files/patch-rec_parse.y b/x11/xstroke/files/patch-rec_parse.y new file mode 100644 index 000000000000..07f32db50578 --- /dev/null +++ b/x11/xstroke/files/patch-rec_parse.y @@ -0,0 +1,17 @@ +--- 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 @@ + $$ = $1; + rec_mode_list_append(&$$, $3); + } ++ ; + + mode_id : STRING + { + $$ = rec_get_mode((rec_t *) rec, $1); + free($1); + } ++ ; + + gesture_list : gesture + { |