printf: enable and fix compiler warnings
authorTim-Philipp Müller <tim@centricular.net>
Sun, 7 Apr 2013 19:11:21 +0000 (20:11 +0100)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Fri, 12 Apr 2013 22:05:58 +0000 (23:05 +0100)
But suppress -Wformat-nonliteral warnings since sprintf
is used with a runtime-generated format string in our
vasnprintf implementation.

configure.ac
gst/printf/Makefile.am
gst/printf/vasnprintf.c

index 26ceca2..ca57a1f 100644 (file)
@@ -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)
 
index 67dc35f..5b9fbd4 100644 (file)
@@ -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
 
index 41622ad..1cc5c0d 100644 (file)
@@ -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,