mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-26 00:58:12 +00:00
fe7f7135e0
Does not do anything yet. On a sidenote, we can't just use %p\001 or so to signal the extension because g-i complains about an invalid ascii character then, so have to resort to something more elaborate, such as %p\aA etc. https://bugzilla.gnome.org/show_bug.cgi?id=613081
20 lines
342 B
Makefile
20 lines
342 B
Makefile
AM_CPPFLAGS = $(GLIB_CFLAGS)
|
|
|
|
noinst_LTLIBRARIES = libgstprintf.la
|
|
|
|
libgstprintf_la_CFLAGS =
|
|
libgstprintf_la_SOURCES = \
|
|
asnprintf.c \
|
|
printf-args.c \
|
|
printf-args.h \
|
|
printf-parse.c \
|
|
printf-parse.h \
|
|
vasnprintf.c \
|
|
vasnprintf.h \
|
|
printf.c \
|
|
printf.h \
|
|
printf-extension.c \
|
|
printf-extension.h \
|
|
gst-printf.h
|
|
|
|
EXTRA_DIST = README
|