mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
d56ba2c780
Original commit message from CVS: * configure.ac: * ext/gio/gstgio.c: * ext/gio/gstgio.h: * ext/gio/gstgiobasesink.h: * ext/gio/gstgiobasesrc.c: (gst_gio_base_src_get_size): * ext/gio/gstgiobasesrc.h: * ext/gio/gstgiosink.c: (gst_gio_sink_start): * ext/gio/gstgiosink.h: * ext/gio/gstgiosrc.h: * ext/gio/gstgiostreamsink.h: * ext/gio/gstgiostreamsrc.h: * tests/check/pipelines/gio.c: Update to latest API changes in GLib/GIO and require at least gio-2.0 2.15.0 for this. * ext/gio/Makefile.am: Add GST_PLUGIN_LDFLAGS to LDFLAGS.
28 lines
661 B
Makefile
28 lines
661 B
Makefile
# plugindir is set in configure
|
|
|
|
plugin_LTLIBRARIES = libgstgio.la
|
|
|
|
# sources used to compile this plug-in
|
|
libgstgio_la_SOURCES = \
|
|
gstgio.c \
|
|
gstgiobasesink.c \
|
|
gstgiobasesrc.c \
|
|
gstgiosink.c \
|
|
gstgiosrc.c \
|
|
gstgiostreamsink.c \
|
|
gstgiostreamsrc.c
|
|
|
|
libgstgio_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GIO_CFLAGS)
|
|
libgstgio_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) $(GIO_LIBS)
|
|
libgstgio_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(GST_GIO_LDFLAGS)
|
|
|
|
# headers we need but don't want installed
|
|
noinst_HEADERS = \
|
|
gstgio.h \
|
|
gstgiobasesink.h \
|
|
gstgiobasesrc.h \
|
|
gstgiosink.h \
|
|
gstgiosrc.h \
|
|
gstgiostreamsink.h \
|
|
gstgiostreamsrc.h
|
|
|