2013-04-07 19:11:21 +00:00
|
|
|
AM_CPPFLAGS = $(GLIB_CFLAGS) -DSTATIC=G_GNUC_INTERNAL $(WARNING_CFLAGS) $(PRINTF_CFLAGS)
|
2013-03-30 15:13:32 +00:00
|
|
|
|
2013-04-10 10:51:37 +00:00
|
|
|
# don't have a need for that and it's not portable so just ignore for now
|
|
|
|
AM_CPPFLAGS += -UHAVE_LONG_DOUBLE
|
|
|
|
|
|
|
|
# just use internal emulation for printing long longs for now
|
|
|
|
AM_CPPFLAGS += -UHAVE_LONG_LONG_FORMAT
|
|
|
|
|
|
|
|
# don't need any of this widechar stuff, so just disable it for now
|
|
|
|
AM_CPPFLAGS += -UHAVE_WCHAR_T -UHAVE_WCSLEN -UHAVE_WINT_T
|
|
|
|
|
|
|
|
# in case anyone wants to add anything else or undo some of the undefs
|
|
|
|
AM_CPPFLAGS += $(PRINTF_EXTRA_CFLAGS)
|
|
|
|
|
2013-03-30 15:13:32 +00:00
|
|
|
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 \
|
2013-03-30 18:28:38 +00:00
|
|
|
printf-extension.c \
|
|
|
|
printf-extension.h \
|
2013-03-30 15:13:32 +00:00
|
|
|
gst-printf.h
|
|
|
|
|
|
|
|
EXTRA_DIST = README
|