summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm@src.gnome.org>2003-07-28 12:58:23 +0000
committerMalcolm Tredinnick <malcolm@src.gnome.org>2003-07-28 12:58:23 +0000
commit4abea34bf50ef30b416dde5d60c1fae47d897f6e (patch)
treeee03dd46ee7b0b794c6cda9f18531eb0aeb44ea8
parentd085904377b24767b8fa61b4034ee4e9669044fc (diff)
downloadgnome-common-4abea34bf50ef30b416dde5d60c1fae47d897f6e.tar.gz
Default setting in the GNOME_COMPILE_WARNINGS macro is now "yes". This
* compiler-flags.m4: Default setting in the GNOME_COMPILE_WARNINGS macro is now "yes". This fixes bug #118479 (another good bit of debugging from Steve Chaplin). svn path=/trunk/; revision=3051
-rw-r--r--macros2/ChangeLog6
-rw-r--r--macros2/compiler-flags.m42
2 files changed, 7 insertions, 1 deletions
diff --git a/macros2/ChangeLog b/macros2/ChangeLog
index 9c98398..3dabd85 100644
--- a/macros2/ChangeLog
+++ b/macros2/ChangeLog
@@ -1,3 +1,9 @@
+2003-07-28 Malcolm Tredinnick <malcolm@commsecure.com.au>
+
+ * compiler-flags.m4: Default setting in the
+ GNOME_COMPILE_WARNINGS macro is now "yes". This fixes bug
+ #118479 (another good bit of debugging from Steve Chaplin).
+
2003-07-20 Malcolm Tredinnick <malcolm@commsecure.com.au>
* compiler-flags.m4: Remove some redundant options as suggested
diff --git a/macros2/compiler-flags.m4 b/macros2/compiler-flags.m4
index d791d0e..eabcb48 100644
--- a/macros2/compiler-flags.m4
+++ b/macros2/compiler-flags.m4
@@ -7,7 +7,7 @@ AC_DEFUN([GNOME_COMPILE_WARNINGS],[
dnl ******************************
if test -z "$1" ; then
- default_compile_warnings=no
+ default_compile_warnings=yes
else
default_compile_warnings="$1"
fi