diff options
author | Arturo Espinosa <unammx@src.gnome.org> | 1998-09-20 01:40:35 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1998-09-20 01:40:35 +0800 |
commit | 40b5030acc4f4202feeb467fe9f00ad38a93c547 (patch) | |
tree | 1cd0b8c974b8a6d099adc0060d1582dfb84b54d0 /macros/compiler-flags.m4 | |
parent | e8c5cd3ae17047c49b821cefd021abd15dbe6094 (diff) | |
download | gsoc2013-evolution-40b5030acc4f4202feeb467fe9f00ad38a93c547.tar gsoc2013-evolution-40b5030acc4f4202feeb467fe9f00ad38a93c547.tar.gz gsoc2013-evolution-40b5030acc4f4202feeb467fe9f00ad38a93c547.tar.bz2 gsoc2013-evolution-40b5030acc4f4202feeb467fe9f00ad38a93c547.tar.lz gsoc2013-evolution-40b5030acc4f4202feeb467fe9f00ad38a93c547.tar.xz gsoc2013-evolution-40b5030acc4f4202feeb467fe9f00ad38a93c547.tar.zst gsoc2013-evolution-40b5030acc4f4202feeb467fe9f00ad38a93c547.zip |
Do not use -W as in the context of Gtk/Gnome, we get warnings for the
Do not use -W as in the context of Gtk/Gnome, we get warnings for
the unused parameters in callback funcions which we cant fix.
Miguel.
svn path=/trunk/; revision=384
Diffstat (limited to 'macros/compiler-flags.m4')
-rw-r--r-- | macros/compiler-flags.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macros/compiler-flags.m4 b/macros/compiler-flags.m4 index 953e8ebb5b..c582a387cc 100644 --- a/macros/compiler-flags.m4 +++ b/macros/compiler-flags.m4 @@ -15,7 +15,7 @@ AC_DEFUN([GNOME_COMPILE_WARNINGS],[ esac if test "x$enable_compile_warnings" = "xyes"; then - warnCFLAGS="$warnCFLAGS -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith" + warnCFLAGS="$warnCFLAGS -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith" fi fi fi |