mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 09:55:36 +00:00
printf: enable and fix compiler warnings
But suppress -Wformat-nonliteral warnings since sprintf is used with a runtime-generated format string in our vasnprintf implementation.
This commit is contained in:
parent
97b3948a9f
commit
ff292d530c
3 changed files with 6 additions and 2 deletions
|
@ -618,6 +618,10 @@ fi
|
|||
dnl define an ERROR_CFLAGS Makefile variable
|
||||
AG_GST_SET_ERROR_CFLAGS($FATAL_WARNINGS, [-Wmissing-declarations -Wmissing-prototypes -Wredundant-decls -Wundef -Wwrite-strings -Wformat-nonliteral -Wformat-security -Wold-style-definition -Winit-self -Wmissing-include-dirs -Waddress -Waggregate-return -Wno-multichar -Wnested-externs $NO_WARNINGS])
|
||||
|
||||
dnl special warning flags for gst/printf
|
||||
AS_COMPILER_FLAG([-Wno-format-nonliteral], [PRINTF_CFLAGS="-Wno-format-nonliteral"])
|
||||
AC_SUBST(PRINTF_CFLAGS)
|
||||
|
||||
dnl define correct level for debugging messages
|
||||
AG_GST_SET_LEVEL_DEFAULT($GST_GIT)
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
AM_CPPFLAGS = $(GLIB_CFLAGS) -DSTATIC=G_GNUC_INTERNAL
|
||||
AM_CPPFLAGS = $(GLIB_CFLAGS) -DSTATIC=G_GNUC_INTERNAL $(WARNING_CFLAGS) $(PRINTF_CFLAGS)
|
||||
|
||||
noinst_LTLIBRARIES = libgstprintf.la
|
||||
|
||||
|
|
|
@ -75,7 +75,7 @@ local_wcslen (const wchar_t * s)
|
|||
#endif
|
||||
|
||||
#ifndef HAVE_LONG_LONG_FORMAT
|
||||
static int
|
||||
static inline int
|
||||
print_long_long (char *buf,
|
||||
int len,
|
||||
int width,
|
||||
|
|
Loading…
Reference in a new issue