From 260e2e74271664868e36e44131ae214a06f12aed Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Wed, 1 Feb 2012 17:53:50 +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 --- gst/mpegtsdemux/Makefile.am | 3 +++ gst/multifdsink/Makefile.am | 3 +++ tests/examples/opencv/gst_element_print_properties.c | 3 +++ tests/examples/scaletempo/Makefile.am | 3 +++ 4 files changed, 12 insertions(+) diff --git a/gst/mpegtsdemux/Makefile.am b/gst/mpegtsdemux/Makefile.am index 55b57d9..10e3f39 100644 --- a/gst/mpegtsdemux/Makefile.am +++ b/gst/mpegtsdemux/Makefile.am @@ -1,5 +1,8 @@ plugin_LTLIBRARIES = libgstmpegtsdemux.la +# FIXME 0.11: ignore GValueArray warnings for now until this is sorted +ERROR_CFLAGS= + libgstmpegtsdemux_la_SOURCES = \ gsttsdemux.c \ gstmpegdesc.c \ diff --git a/gst/multifdsink/Makefile.am b/gst/multifdsink/Makefile.am index 6d9b5b5..adaf5d6 100644 --- a/gst/multifdsink/Makefile.am +++ b/gst/multifdsink/Makefile.am @@ -1,5 +1,8 @@ plugin_LTLIBRARIES = libgstmultifdsink.la +# FIXME 0.11: ignore GValueArray warnings for now until this is sorted +ERROR_CFLAGS= + # variables used for enum/marshal generation glib_enum_headers = gstmultifdsink.h glib_enum_define = GST_MULTI_FD_SINK diff --git a/tests/examples/opencv/gst_element_print_properties.c b/tests/examples/opencv/gst_element_print_properties.c index e91188b..b287406 100644 --- a/tests/examples/opencv/gst_element_print_properties.c +++ b/tests/examples/opencv/gst_element_print_properties.c @@ -20,6 +20,9 @@ * */ +/* FIXME 0.11: suppress warnings for deprecated API such as GValueArray + * with newer GLib versions (>= 2.31.0) */ +#define GLIB_DISABLE_DEPRECATION_WARNINGS #include #include diff --git a/tests/examples/scaletempo/Makefile.am b/tests/examples/scaletempo/Makefile.am index 5cdf3c7..33e6bc9 100644 --- a/tests/examples/scaletempo/Makefile.am +++ b/tests/examples/scaletempo/Makefile.am @@ -1,5 +1,8 @@ noinst_PROGRAMS = scaletempo-demo +# FIXME 0.11: ignore GValueArray warnings for now until this is sorted +ERROR_CFLAGS= + scaletempo_demo_SOURCES = demo-main.c demo-player.c demo-gui.c scaletempo_demo_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GTK_CFLAGS) scaletempo_demo_LDFLAGS = $(GST_LIBS) $(GST_PLUGINS_BASE_LIBS) $(GTK_LIBS) -lgstinterfaces-@GST_MAJORMINOR@ -- 2.7.4