mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
chromaprint: link against libgstbase
Calls to gst_base_transform_get_type and gst_base_transform_set_passthrough require linking with libgstbase. https://bugzilla.gnome.org/show_bug.cgi?id=684740
This commit is contained in:
parent
8f802c6425
commit
33a012219d
1 changed files with 3 additions and 2 deletions
|
@ -3,10 +3,11 @@ plugin_LTLIBRARIES = libgstchromaprint.la
|
|||
libgstchromaprint_la_SOURCES = gstchromaprint.c gstchromaprint.h
|
||||
|
||||
libgstchromaprint_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) \
|
||||
$(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) \
|
||||
$(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) \
|
||||
$(CHROMAPRINT_CFLAGS)
|
||||
libgstchromaprint_la_LIBADD = \
|
||||
$(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) $(GST_LIBS) \
|
||||
$(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) \
|
||||
$(GST_BASE_LIBS) $(GST_LIBS) \
|
||||
$(CHROMAPRINT_LIBS)
|
||||
libgstchromaprint_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstchromaprint_la_LIBTOOLFLAGS = --tag=disable-static
|
||||
|
|
Loading…
Reference in a new issue