]> err.no Git - dpkg/commitdiff
Split out the -W*-prototype warnings into separate checks.
authorAdam Heath <doogie@debian.org>
Sun, 19 May 2002 11:03:19 +0000 (11:03 +0000)
committerAdam Heath <doogie@debian.org>
Sun, 19 May 2002 11:03:19 +0000 (11:03 +0000)
ChangeLog
configure.in

index c2c5197885e2684e0474783d3df510de1c810667..8f4ee9bdcf9e0b3108e29a60f7670c5882f9bf91 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sun May 19 06:05:24 CDT 2002 Adam Heath <doogie@debian.org>
+
+  * configure.in: Split out the -W*-prototype warnings into separate
+    checks.
+
 Sun May 19 06:01:31 CDT 2002 Adam Heath <doogie@debian.org>
 
   * configure.in, automake/dpkg.m4: Make a new macro, DPKG_C_GCC_ATTRIBUTE.
index 61aa65a38637529afdddfc4904820b5d9dcdbf65..26909f94c72fab1e67bd12a114c0d2b9d639e21f 100644 (file)
@@ -208,7 +208,9 @@ DPKG_C_GCC_TRY_WARNS(-Wall , dpkg_cv_c_gcc_warn_all)
 DPKG_C_GCC_TRY_WARNS(-Wwrite-strings, dpkg_cv_c_gcc_warn_writestrings)
 DPKG_C_GCC_TRY_WARNS(-Wpointer-arith, dpkg_cv_c_gcc_warn_pointerarith)
 DPKG_C_GCC_TRY_WARNS(-Wimplicit -Wnested-externs, dpkg_cv_c_gcc_warn_implicit)
-DPKG_C_GCC_TRY_WARNS(-Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations, dpkg_cv_c_gcc_prototypes)
+DPKG_C_GCC_TRY_WARNS(-Wstrict-prototypes, dpkg_cv_c_gcc_strict_prototypes)
+DPKG_C_GCC_TRY_WARNS(-Wmissing-prototypes, dpkg_cv_c_gcc_missing_prototypes)
+DPKG_C_GCC_TRY_WARNS(-Wmissing-declarations, dpkg_cv_c_gcc_missing_declarations)
 DPKG_C_GCC_TRY_WARNS(-Wbad-function-cast, dpkg_cv_c_gcc_func_cast)
 DPKG_C_GCC_TRY_WARNS(-Wcast-qual -Wcast-align, dpkg_cv_c_gcc_cast_qual)
 DPKG_C_GCC_TRY_WARNS(-Winline, dpkg_cv_c_gcc_inline)