From 781af80282466433875790b1995a9896c3b13962 Mon Sep 17 00:00:00 2001 From: jbu Date: Tue, 4 Aug 2015 17:45:26 +0200 Subject: [PATCH] gstreamer: fix grammar.y for bison >= 3.0.4 This patch fixes the compile error. I have no confirmation, if it is the "Right Thing (tm)" to do, until upstream publishes their own fix for this issue. --- srcpkgs/gstreamer/patches/fix_bison_grammar_y.patch | 11 +++++++++++ srcpkgs/gstreamer/template | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/gstreamer/patches/fix_bison_grammar_y.patch diff --git a/srcpkgs/gstreamer/patches/fix_bison_grammar_y.patch b/srcpkgs/gstreamer/patches/fix_bison_grammar_y.patch new file mode 100644 index 0000000000..f47142d287 --- /dev/null +++ b/srcpkgs/gstreamer/patches/fix_bison_grammar_y.patch @@ -0,0 +1,11 @@ +--- gst/parse/grammar.y 2011-12-30 02:14:35.000000000 +0100 ++++ gst/parse/grammar.y 2015-08-04 17:40:31.981404808 +0200 +@@ -36,7 +36,7 @@ + + typedef void* yyscan_t; + +-int priv_gst_parse_yylex (void * yylval_param , yyscan_t yyscanner); ++int priv_gst_parse_yylex (void * yylval_param); + int priv_gst_parse_yylex_init (yyscan_t scanner); + int priv_gst_parse_yylex_destroy (yyscan_t scanner); + struct yy_buffer_state * priv_gst_parse_yy_scan_string (char* , yyscan_t); diff --git a/srcpkgs/gstreamer/template b/srcpkgs/gstreamer/template index 4be4c74d44..d773bc4ecf 100644 --- a/srcpkgs/gstreamer/template +++ b/srcpkgs/gstreamer/template @@ -1,7 +1,7 @@ # Template file for 'gstreamer'. pkgname=gstreamer version=0.10.36 -revision=5 +revision=6 build_style=gnu-configure configure_args="--disable-valgrind --enable-docbook" hostmakedepends="libtool pkg-config flex python perl docbook-xsl glib-devel"