diff options
author | ryoon <ryoon@pkgsrc.org> | 2013-08-03 04:07:49 +0000 |
---|---|---|
committer | ryoon <ryoon@pkgsrc.org> | 2013-08-03 04:07:49 +0000 |
commit | f0ec6848331f38f181eaa515868370df13861e4e (patch) | |
tree | ee7d5b66b0bceee8949911807daf2c8f2b4d511e /multimedia | |
parent | 6db621f8ab32ad51afc7650238bb6b0da4e5d2ca (diff) | |
download | pkgsrc-f0ec6848331f38f181eaa515868370df13861e4e.tar.gz |
Fix build with bison-3.0, patch is borrowed from gstreamer0.10.
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/gstreamer1/distinfo | 3 | ||||
-rw-r--r-- | multimedia/gstreamer1/patches/patch-gst_parse_grammar.y | 14 |
2 files changed, 16 insertions, 1 deletions
diff --git a/multimedia/gstreamer1/distinfo b/multimedia/gstreamer1/distinfo index 12a523e2d00..298d20515af 100644 --- a/multimedia/gstreamer1/distinfo +++ b/multimedia/gstreamer1/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.5 2013/07/22 14:27:17 drochner Exp $ +$NetBSD: distinfo,v 1.6 2013/08/03 04:07:49 ryoon Exp $ SHA1 (gstreamer-1.0.8.tar.xz) = 25daac109c4989f460c4d62475e63af941400a9a RMD160 (gstreamer-1.0.8.tar.xz) = 13995a2363157a8edbd6be5f4f42d179d87188be Size (gstreamer-1.0.8.tar.xz) = 3138212 bytes +SHA1 (patch-gst_parse_grammar.y) = ff38bff8b28b787297e023697fe087d3910dcade diff --git a/multimedia/gstreamer1/patches/patch-gst_parse_grammar.y b/multimedia/gstreamer1/patches/patch-gst_parse_grammar.y new file mode 100644 index 00000000000..096c23dbc71 --- /dev/null +++ b/multimedia/gstreamer1/patches/patch-gst_parse_grammar.y @@ -0,0 +1,14 @@ +$NetBSD: patch-gst_parse_grammar.y,v 1.1 2013/08/03 04:07:49 ryoon Exp $ + +* Fix build with bison-3.0. + +--- gst/parse/grammar.y.orig 2012-10-25 10:54:57.000000000 +0000 ++++ gst/parse/grammar.y +@@ -659,6 +659,7 @@ static int yyerror (void *scanner, graph + + %parse-param { void *scanner } + %parse-param { graph_t *graph } ++%lex-param {void *scanner} + %pure-parser + + %start graph |