From f6efb87a78b15e29dbadfaeb85b43880470651e4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Dr=C3=B6ge?= Date: Thu, 28 Feb 2019 13:09:38 +0200 Subject: [PATCH] ges: Link ges plugin to libgstpbutils /usr/bin/ld: .libs/libgstges_la-gesdemux.o: in function `ges_timeline_new_from_uri_from_main_thread': ./plugins/ges/gesdemux.c:279: undefined reference to `gst_discoverer_new' /usr/bin/ld: ./plugins/ges/gesdemux.c:288: undefined reference to `gst_discoverer_start' --- plugins/ges/Makefile.am | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/ges/Makefile.am b/plugins/ges/Makefile.am index 7344526..b9e895f 100644 --- a/plugins/ges/Makefile.am +++ b/plugins/ges/Makefile.am @@ -6,11 +6,13 @@ libgstges_la_SOURCES = \ gesdemux.c libgstges_la_CFLAGS = -I$(top_srcdir) \ + $(GST_PBUTILS_CFLAGS) \ $(GST_PLUGINS_BASE_CFLAGS) \ $(GST_BASE_CFLAGS) $(GST_CFLAGS) libgstges_la_LIBADD = \ $(top_builddir)/ges/libges-@GST_API_VERSION@.la \ + $(GST_PBUTILS_LIBS) \ $(GST_PLUGINS_BASE_LIBS) \ $(GST_BASE_LIBS) $(GST_LIBS) -- 2.7.4