mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
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
This commit is contained in:
parent
4d0e83c48d
commit
260e2e7427
4 changed files with 12 additions and 0 deletions
|
@ -1,5 +1,8 @@
|
||||||
plugin_LTLIBRARIES = libgstmpegtsdemux.la
|
plugin_LTLIBRARIES = libgstmpegtsdemux.la
|
||||||
|
|
||||||
|
# FIXME 0.11: ignore GValueArray warnings for now until this is sorted
|
||||||
|
ERROR_CFLAGS=
|
||||||
|
|
||||||
libgstmpegtsdemux_la_SOURCES = \
|
libgstmpegtsdemux_la_SOURCES = \
|
||||||
gsttsdemux.c \
|
gsttsdemux.c \
|
||||||
gstmpegdesc.c \
|
gstmpegdesc.c \
|
||||||
|
|
|
@ -1,5 +1,8 @@
|
||||||
plugin_LTLIBRARIES = libgstmultifdsink.la
|
plugin_LTLIBRARIES = libgstmultifdsink.la
|
||||||
|
|
||||||
|
# FIXME 0.11: ignore GValueArray warnings for now until this is sorted
|
||||||
|
ERROR_CFLAGS=
|
||||||
|
|
||||||
# variables used for enum/marshal generation
|
# variables used for enum/marshal generation
|
||||||
glib_enum_headers = gstmultifdsink.h
|
glib_enum_headers = gstmultifdsink.h
|
||||||
glib_enum_define = GST_MULTI_FD_SINK
|
glib_enum_define = GST_MULTI_FD_SINK
|
||||||
|
|
|
@ -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 <gst/gst.h>
|
#include <gst/gst.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
|
@ -1,5 +1,8 @@
|
||||||
noinst_PROGRAMS = scaletempo-demo
|
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_SOURCES = demo-main.c demo-player.c demo-gui.c
|
||||||
scaletempo_demo_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GTK_CFLAGS)
|
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@
|
scaletempo_demo_LDFLAGS = $(GST_LIBS) $(GST_PLUGINS_BASE_LIBS) $(GTK_LIBS) -lgstinterfaces-@GST_MAJORMINOR@
|
||||||
|
|
Loading…
Reference in a new issue