summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRico Tzschichholz <ricotz@ubuntu.com>2015-08-16 21:18:50 +0200
committerTim-Philipp Müller <tim@centricular.com>2015-08-17 14:15:39 +0100
commitdce7ffb04efb30762b7282436ab91eb4a8ea6250 (patch)
tree30bd567e49d1a69b84e2935ebf6c522006a2ca9b
parent6517282af7f9fba5ad30d9d8cf42077223f3bcb3 (diff)
downloadgstreamer-plugins-bad-dce7ffb04efb30762b7282436ab91eb4a8ea6250.tar.gz
dashdemux: link against gio for g_resolver and g_inet_address_from_string
Add missing gio-2.0 CFLAGS/LIBS to fix linker failure
-rw-r--r--ext/dash/Makefile.am2
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/dash/Makefile.am b/ext/dash/Makefile.am
index deae7acc2..38af4b773 100644
--- a/ext/dash/Makefile.am
+++ b/ext/dash/Makefile.am
@@ -19,6 +19,7 @@ libgstdashdemux_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) \
$(GST_PLUGINS_BASE_CFLAGS) \
$(GST_BASE_CFLAGS) \
$(GST_CFLAGS) \
+ $(GIO_CFLAGS) \
$(LIBXML2_CFLAGS)
libgstdashdemux_la_LIBADD = \
$(top_builddir)/gst-libs/gst/uridownloader/libgsturidownloader-@GST_API_VERSION@.la \
@@ -27,6 +28,7 @@ libgstdashdemux_la_LIBADD = \
-lgsttag-$(GST_API_VERSION) \
$(GST_BASE_LIBS) \
$(GST_LIBS) \
+ $(GIO_LIBS) \
-lgstnet-$(GST_API_VERSION) \
$(LIBXML2_LIBS)
libgstdashdemux_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)