diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2017-10-13 00:21:03 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2017-11-26 11:14:01 +0000 |
commit | e04c6694f1366937b6a7199b286cada9e5b5b3fc (patch) | |
tree | 03fbe60d9cf42c61dcf84c7427bebf54503b055d /plugins | |
parent | ec6d2304bdffb016a19e6fd3e50877bca3a2adff (diff) |
tracers: log: no need to link to our internal printf implementation
The call to __gst_vasprintf() was removed in commit 1a3e218b8.
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/tracers/Makefile.am | 6 | ||||
-rw-r--r-- | plugins/tracers/gstlog.c | 2 |
2 files changed, 1 insertions, 7 deletions
diff --git a/plugins/tracers/Makefile.am b/plugins/tracers/Makefile.am index 975ca8b18..576ccd5b0 100644 --- a/plugins/tracers/Makefile.am +++ b/plugins/tracers/Makefile.am @@ -9,10 +9,8 @@ endif if GST_DISABLE_GST_DEBUG LOG_SOURCES = -GST_PRINTF_LA = else LOG_SOURCES = gstlog.c -GST_PRINTF_LA = $(top_builddir)/gst/printf/libgstprintf.la endif libgstcoretracers_la_DEPENDENCIES = $(top_builddir)/gst/libgstreamer-@GST_API_VERSION@.la @@ -26,9 +24,7 @@ libgstcoretracers_la_SOURCES = \ libgstcoretracers_la_CFLAGS = $(GST_OBJ_CFLAGS) \ -DGST_USE_UNSTABLE_API -libgstcoretracers_la_LIBADD = \ - $(GST_PRINTF_LA) \ - $(GST_OBJ_LIBS) +libgstcoretracers_la_LIBADD = $(GST_OBJ_LIBS) libgstcoretracers_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) noinst_HEADERS = \ diff --git a/plugins/tracers/gstlog.c b/plugins/tracers/gstlog.c index 631e58d80..d55b21b1c 100644 --- a/plugins/tracers/gstlog.c +++ b/plugins/tracers/gstlog.c @@ -31,8 +31,6 @@ #include "gstlog.h" -#include <gst/printf/printf.h> - GST_DEBUG_CATEGORY_STATIC (gst_log_debug); #define GST_CAT_DEFAULT gst_log_debug GST_DEBUG_CATEGORY_STATIC (GST_CAT_BIN); |