From 657f1913c6c4b3b47424e33ef26d1b277792cd21 Mon Sep 17 00:00:00 2001 From: Julien Isorce Date: Sun, 11 Oct 2015 10:00:43 +0100 Subject: [PATCH] dashdemux: fix undefined reference to gst_ntp_clock_new Found with gst-inspect-1.0 -b in gst-uninstalled env. https://bugzilla.gnome.org/show_bug.cgi?id=756383 --- configure.ac | 1 + ext/dash/Makefile.am | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 2424dcb1f8..0adb3b8a01 100644 --- a/configure.ac +++ b/configure.ac @@ -199,6 +199,7 @@ AG_GST_CHECK_GST($GST_API_VERSION, [$GST_REQ], yes) AG_GST_CHECK_GST_BASE($GST_API_VERSION, [$GST_REQ], yes) AG_GST_CHECK_GST_CHECK($GST_API_VERSION, [$GST_REQ], no) AG_GST_CHECK_GST_CONTROLLER($GST_API_VERSION, [$GST_REQ], yes) +AG_GST_CHECK_GST_NET($GST_API_VERSION, [$GST_REQ], yes) AM_CONDITIONAL(HAVE_GST_CHECK, test "x$HAVE_GST_CHECK" = "xyes") AG_GST_CHECK_GST_PLUGINS_BASE($GST_API_VERSION, [$GSTPB_REQ], yes) diff --git a/ext/dash/Makefile.am b/ext/dash/Makefile.am index 38af4b7737..66f225491b 100644 --- a/ext/dash/Makefile.am +++ b/ext/dash/Makefile.am @@ -27,9 +27,9 @@ libgstdashdemux_la_LIBADD = \ $(GST_PLUGINS_BASE_LIBS) \ -lgsttag-$(GST_API_VERSION) \ $(GST_BASE_LIBS) \ + $(GST_NET_LIBS) \ $(GST_LIBS) \ $(GIO_LIBS) \ - -lgstnet-$(GST_API_VERSION) \ $(LIBXML2_LIBS) libgstdashdemux_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) libgstdashdemux_la_LIBTOOLFLAGS = --tag=disable-static