From 467129e6572fbf44f83433cab601b4c024a9aef3 Mon Sep 17 00:00:00 2001 From: "Kaveh R. Ghazi" <ghazi@caip.rutgers.edu> Date: Sun, 24 Jul 2005 03:44:26 +0000 Subject: [PATCH] configure.ac (ACX_PROG_CC_WARNING_OPTS): add -Wmissing-format-attribute. * configure.ac (ACX_PROG_CC_WARNING_OPTS): add -Wmissing-format-attribute. * configure: Regenerate. From-SVN: r102327 --- libcpp/ChangeLog | 7 +++++++ libcpp/configure | 3 ++- libcpp/configure.ac | 3 ++- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/libcpp/ChangeLog b/libcpp/ChangeLog index 165461c88fb7..74b93085f2a2 100644 --- a/libcpp/ChangeLog +++ b/libcpp/ChangeLog @@ -1,3 +1,10 @@ +2005-07-23 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + + * configure.ac (ACX_PROG_CC_WARNING_OPTS): add + -Wmissing-format-attribute. + + * configure: Regenerate. + 2005-06-29 Kelley Cook <kcook@gcc.gnu.org> * all files: Update FSF address in copyright headers. diff --git a/libcpp/configure b/libcpp/configure index 63e2020d3d74..cd8fac81548e 100755 --- a/libcpp/configure +++ b/libcpp/configure @@ -2691,7 +2691,8 @@ test -n "$AUTOHEADER" || AUTOHEADER="$MISSING autoheader" WARN_CFLAGS= save_CFLAGS="$CFLAGS" for option in -W -Wall -Wwrite-strings -Wstrict-prototypes \ - -Wmissing-prototypes -Wold-style-definition; do + -Wmissing-prototypes -Wold-style-definition \ + -Wmissing-format-attribute; do as_acx_Woption=`echo "acx_cv_prog_cc_warning_$option" | $as_tr_sh` echo "$as_me:$LINENO: checking whether $CC supports $option" >&5 diff --git a/libcpp/configure.ac b/libcpp/configure.ac index 5c27835e871c..9a000bd04cb4 100644 --- a/libcpp/configure.ac +++ b/libcpp/configure.ac @@ -22,7 +22,8 @@ AC_CHECK_PROGS([AUTOHEADER], [autoheader], [$MISSING autoheader]) # See config/warnings.m4 for details. ACX_PROG_CC_WARNING_OPTS([-W -Wall -Wwrite-strings -Wstrict-prototypes \ - -Wmissing-prototypes -Wold-style-definition]) + -Wmissing-prototypes -Wold-style-definition \ + -Wmissing-format-attribute]) ACX_PROG_CC_WARNING_ALMOST_PEDANTIC([-Wno-long-long]) # Only enable with --enable-werror-always until existing warnings are -- GitLab