From 313c399808fe5ea2ce646733c39f2c14d0a8e479 Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Wed, 23 Apr 2003 19:16:06 +0000 Subject: [PATCH] workaround for bison 1.35 bug Original commit message from CVS: workaround for bison 1.35 bug --- gst/parse/grammar.y | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/gst/parse/grammar.y b/gst/parse/grammar.y index 050a78c..7b6b121 100644 --- a/gst/parse/grammar.y +++ b/gst/parse/grammar.y @@ -100,7 +100,15 @@ typedef struct { #define ERROR(type, ...) SET_ERROR (((graph_t *) graph)->error, (type), __VA_ARGS__ ) #ifdef GST_DEBUG_ENABLED # define YYDEBUG 1 + /* bison 1.35 calls this macro with side effects, we need to make sure the + side effects work - crappy bison # define YYFPRINTF(a, ...) GST_DEBUG (GST_CAT_PIPELINE, __VA_ARGS__) + */ +# define YYFPRINTF(a, ...) G_STMT_START{ \ + gchar *temp = g_strdup_printf (__VA_ARGS__); \ + GST_DEBUG (GST_CAT_PIPELINE, temp); \ + g_free (temp); \ + }G_STMT_END #endif #elif defined(G_HAVE_GNUC_VARARGS) @@ -117,7 +125,15 @@ typedef struct { #define ERROR(type, args...) SET_ERROR (((graph_t *) graph)->error, (type), ## args ) #ifdef GST_DEBUG_ENABLED # define YYDEBUG 1 + /* bison 1.35 calls this macro with side effects, we need to make sure the + side effects work - crappy bison # define YYFPRINTF(a, args...) GST_DEBUG (GST_CAT_PIPELINE, ## args ) + */ +# define YYFPRINTF(a, args...) G_STMT_START{ \ + gchar *temp = g_strdup_printf ( ## args ); \ + GST_DEBUG (GST_CAT_PIPELINE, temp); \ + g_free (temp); \ + }G_STMT_END #endif #else -- 2.7.4