Use -Wdeclaration-after-statement if available.
authorBen Pfaff <blp@gnu.org>
Thu, 30 Mar 2006 23:51:01 +0000 (23:51 +0000)
committerBen Pfaff <blp@gnu.org>
Thu, 30 Mar 2006 23:51:01 +0000 (23:51 +0000)
ChangeLog
acinclude.m4
configure.ac

index d0800c6dade457ae6467a77730e8f164a59b14af..ca0447e986d9047029a5af0b063b0032b9b33a16 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Thu Mar 30 15:50:05 2006  Ben Pfaff  <blp@gnu.org>
+
+       * Smake: Enable -Wdeclaration-after-statement warning if
+       available.
+
+       * acinclude.m4: Add macro for checking whether a warning is
+       supported.
+
 Mon Mar 20 16:32:11 2006  Ben Pfaff  <blp@gnu.org>
 
        * Smake: Require "unistd" gnulib module.  Removed tests for
index e3ddb129b1464f0119500566fbe61d8e8bbdb6c3..42ae613bfb88b4fe6d390fd0dcd05e93b764d5cb 100644 (file)
@@ -3,6 +3,22 @@ dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
+dnl Check whether a warning flag is accepted.
+dnl If so, add it to CFLAGS.
+dnl Example: PSPP_ENABLE_WARNING(-Wdeclaration-after-statement)
+AC_DEFUN([PSPP_ENABLE_WARNING],
+[
+  m4_define([pspp_cv_name], [pspp_cv_[]m4_translit([$1], [-], [_])])dnl
+  AC_CACHE_CHECK([whether $CC accepts $1], [pspp_cv_name], 
+    [pspp_save_CFLAGS="$CFLAGS"
+     CFLAGS="$CFLAGS $1"
+     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,)], [pspp_cv_name[]=yes], [pspp_cv_name[]=no])
+     CFLAGS="$pspp_save_CFLAGS"])
+  if test $pspp_cv_name = yes; then
+    CFLAGS="$CFLAGS $1"
+  fi
+])
+
 dnl Check for readline and history libraries.
 
 dnl Modified for PSPP by Ben Pfaff, based on readline.m4 serial 3 from
index aeeb16a343580eefcd250b92ed1c2e8dd7e635ef..6189010eaddf9ba7b0ab3fa62414eb9ae2d6b93d 100644 (file)
@@ -1,4 +1,4 @@
-0dnl Process this file with autoconf to produce a configure script.
+dnl Process this file with autoconf to produce a configure script.
 
 dnl Initialize.
 AX_PREREQ(2.57)
@@ -13,6 +13,8 @@ AM_PROG_CC_C_O
 AC_PROG_RANLIB
 gl_EARLY
 
+PSPP_ENABLE_WARNING(-Wdeclaration-after-statement)
+
 AM_CONDITIONAL(cc_is_gcc, test x"$GCC" = x"yes" )