From 0f3b7b010ef86f0388343345bf12da1861672d23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Wed, 1 Feb 2012 16:40:51 +0000 Subject: [PATCH] build: ignore GValueArray deprecation warnings for the time being until this gets sorted out with the GLib folks and we have a viable alternative. https://bugzilla.gnome.org/show_bug.cgi?id=667228 --- ext/annodex/Makefile.am | 3 +++ gst/audiofx/Makefile.am | 3 +++ gst/rtpmanager/Makefile.am | 3 +++ tests/examples/audiofx/Makefile.am | 3 +++ tests/examples/rtp/Makefile.am | 3 +++ 5 files changed, 15 insertions(+) diff --git a/ext/annodex/Makefile.am b/ext/annodex/Makefile.am index d20a01f383..0ce3f5d75c 100644 --- a/ext/annodex/Makefile.am +++ b/ext/annodex/Makefile.am @@ -1,5 +1,8 @@ plugin_LTLIBRARIES = libgstannodex.la +# FIXME 0.11: ignore GValueArray warnings for now until this is sorted +ERROR_CFLAGS= + libgstannodex_la_SOURCES = \ gstannodex.c \ gstcmmlutils.c \ diff --git a/gst/audiofx/Makefile.am b/gst/audiofx/Makefile.am index b7f22d6935..d700b68456 100644 --- a/gst/audiofx/Makefile.am +++ b/gst/audiofx/Makefile.am @@ -2,6 +2,9 @@ plugin_LTLIBRARIES = libgstaudiofx.la +# FIXME 0.11: ignore GValueArray warnings for now until this is sorted +ERROR_CFLAGS= + # sources used to compile this plug-in libgstaudiofx_la_SOURCES = audiofx.c\ audiopanorama.c \ diff --git a/gst/rtpmanager/Makefile.am b/gst/rtpmanager/Makefile.am index bfcb02824f..bdaf24ba33 100644 --- a/gst/rtpmanager/Makefile.am +++ b/gst/rtpmanager/Makefile.am @@ -1,5 +1,8 @@ plugin_LTLIBRARIES = libgstrtpmanager.la +# FIXME 0.11: ignore GValueArray warnings for now until this is sorted +ERROR_CFLAGS= + glib_enum_define = GST_RTP_BIN glib_gen_prefix = gst_rtp_bin glib_gen_basename = gstrtpbin diff --git a/tests/examples/audiofx/Makefile.am b/tests/examples/audiofx/Makefile.am index efcf785bc7..4441fb558d 100644 --- a/tests/examples/audiofx/Makefile.am +++ b/tests/examples/audiofx/Makefile.am @@ -1,5 +1,8 @@ noinst_PROGRAMS = firfilter-example iirfilter-example +# FIXME 0.11: ignore GValueArray warnings for now until this is sorted +ERROR_CFLAGS= + firfilter_example_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) firfilter_example_LDADD = $(GST_LIBS) $(GST_PLUGINS_BASE_LIBS) -lgstfft-@GST_MAJORMINOR@ $(LIBM) diff --git a/tests/examples/rtp/Makefile.am b/tests/examples/rtp/Makefile.am index f636e816f4..0f57d3fa5e 100644 --- a/tests/examples/rtp/Makefile.am +++ b/tests/examples/rtp/Makefile.am @@ -1,5 +1,8 @@ noinst_PROGRAMS = server-alsasrc-PCMA client-PCMA +# FIXME 0.11: ignore GValueArray warnings for now until this is sorted +ERROR_CFLAGS= + server_alsasrc_PCMA_SOURCES = server-alsasrc-PCMA.c server_alsasrc_PCMA_CFLAGS = $(GST_CFLAGS) server_alsasrc_PCMA_LDADD = $(GST_LIBS) $(LIBM)