gstreamer/gstreamer-1.1.3-bison-3.0.patch

26 lines
1.1 KiB
Diff

From faa95fd19acbd62936c847d48c67b1d9054c6b2d Mon Sep 17 00:00:00 2001
From: Lubosz Sarnecki <lubosz@gmail.com>
Date: Sat, 3 Aug 2013 13:55:11 +0200
Subject: [PATCH 1/2] parse: fix double declaration warnings
---
gst/parse/Makefile.am | 2 --
1 file changed, 2 deletions(-)
diff --git a/gst/parse/Makefile.am b/gst/parse/Makefile.am
index edff324..c05d672 100644
--- a/gst/parse/Makefile.am
+++ b/gst/parse/Makefile.am
@@ -45,8 +45,6 @@ lex.priv_gst_parse_yy.c: parse.l grammar.tab.h
echo '#ifdef HAVE_CONFIG_H' > lex.priv_gst_parse_yy_tmp2.c && \
echo '#include <config.h>' >> lex.priv_gst_parse_yy_tmp2.c && \
echo '#endif' >> lex.priv_gst_parse_yy_tmp2.c && \
- echo 'static inline int priv_gst_parse_yyget_column (void * yyscanner);' >> lex.priv_gst_parse_yy_tmp2.c && \
- echo 'static inline void priv_gst_parse_yyset_column (int column_no , void * yyscanner);' >> lex.priv_gst_parse_yy_tmp2.c && \
cat lex.priv_gst_parse_yy_tmp.c >> lex.priv_gst_parse_yy_tmp2.c && \
rm lex.priv_gst_parse_yy_tmp.c && \
mv lex.priv_gst_parse_yy_tmp2.c lex.priv_gst_parse_yy.c
--
1.8.3.4