mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 08:11:16 +00:00
tracers: log: no need to link to our internal printf implementation
The call to __gst_vasprintf() was removed in commit 1a3e218b8
.
This commit is contained in:
parent
ec6d2304bd
commit
e04c6694f1
2 changed files with 1 additions and 7 deletions
|
@ -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 = \
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue