summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaja R Harinath <harinath@src.gnome.org>1998-10-05 23:26:49 +0000
committerRaja R Harinath <harinath@src.gnome.org>1998-10-05 23:26:49 +0000
commitab031a140a76d4b4ef5eba519e7bec4884969d69 (patch)
treee9e89162ed922c195f8328354aec725ad6a77741
parent7cc56bf8c07fff9ef606cdc7c5032312dc9fbe20 (diff)
downloadgnome-common-ab031a140a76d4b4ef5eba519e7bec4884969d69.tar.gz
Remove `-W'. (warn-unused): Remove.
* compiler-flags.m4 (warnCFLAGS): Remove `-W'. (warn-unused): Remove. svn path=/trunk/; revision=427
-rw-r--r--macros/ChangeLog5
-rw-r--r--macros/compiler-flags.m417
2 files changed, 8 insertions, 14 deletions
diff --git a/macros/ChangeLog b/macros/ChangeLog
index 288af31..6f79315 100644
--- a/macros/ChangeLog
+++ b/macros/ChangeLog
@@ -1,3 +1,8 @@
+1998-10-05 Raja R Harinath <harinath@cs.umn.edu>
+
+ * compiler-flags.m4 (warnCFLAGS): Remove `-W'.
+ (warn-unused): Remove.
+
1998-10-01 Martin Baulig <martin@home-of-linux.org>
* gnome-libgtop-sysdeps.m4 (libgtop_postinstall):
diff --git a/macros/compiler-flags.m4 b/macros/compiler-flags.m4
index 710ff73..92ff35e 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