From 152fd20f329d7e830734bedd728ddc6a39c032ef Mon Sep 17 00:00:00 2001 From: Raja R Harinath Date: Mon, 5 Oct 1998 23:26:49 +0000 Subject: Remove `-W'. (warn-unused): Remove. * compiler-flags.m4 (warnCFLAGS): Remove `-W'. (warn-unused): Remove. svn path=/trunk/; revision=427 --- macros/compiler-flags.m4 | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) (limited to 'macros/compiler-flags.m4') diff --git a/macros/compiler-flags.m4 b/macros/compiler-flags.m4 index 710ff7319c..92ff35e3eb 100644 --- a/macros/compiler-flags.m4 +++ b/macros/compiler-flags.m4 @@ -5,19 +5,6 @@ AC_DEFUN([GNOME_COMPILE_WARNINGS],[ AC_ARG_ENABLE(compile-warnings, [ --enable-compile-warnings=[no/minimum/yes] Turn on compiler warnings.],,enable_compile_warnings=minimum) - AC_ARG_ENABLE(warn-unused, - [ --enable-warn-unused Warn about unused variables and parameters],, - enable_warn_unused=no) - - AC_MSG_CHECKING(what "unused" warning flags to use) - wunusedCFLAGS= - if test "x$enable_warn_unused" = xyes ; then - wunusedCFLAGS='-Wunused' - else - wunusedCFLAGS='-Wno-unused' - fi - AC_MSG_RESULT($wunusedCFLAGS) - AC_MSG_CHECKING(what warning flags to pass to the C compiler) warnCFLAGS= if test "x$enable_compile_warnings" != "xno"; then @@ -27,8 +14,10 @@ AC_DEFUN([GNOME_COMPILE_WARNINGS],[ *) warnCFLAGS="-Wall" ;; esac + ## -W is not all that useful. And it cannot be controlled + ## with individual -Wno-xxx flags, unlike -Wall if test "x$enable_compile_warnings" = "xyes"; then - warnCFLAGS="$warnCFLAGS -W $wunusedCFLAGS -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith" + warnCFLAGS="$warnCFLAGS -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith" fi fi fi -- cgit v1.2.3