summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas James Alexander Thurman <tthurman@src.gnome.org>2008-11-22 19:47:02 +0000
committerThomas James Alexander Thurman <tthurman@src.gnome.org>2008-11-22 19:47:02 +0000
commit68ac59ff6d11b945ad8f10218f3ade890d5bd861 (patch)
treedc1cd6d6380b270f3dac3decd39bfa5e800ae9a0
parentc2abbce2edf734dad95aefe5e891d21ae4d10527 (diff)
downloadmetacity-68ac59ff6d11b945ad8f10218f3ade890d5bd861.tar.gz
Set -ansi so people stop complaining about C99.
* configure.in: Set -ansi so people stop complaining about C99. svn path=/trunk/; revision=4025
-rw-r--r--ChangeLog4
-rw-r--r--configure.in2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 9a60bdcd..0c4df6f5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2008-11-22 Thomas Thurman <tthurman@gnome.org>
+ * configure.in: Set -ansi so people stop complaining about C99.
+
+2008-11-22 Thomas Thurman <tthurman@gnome.org>
+
* src/core/prefs.c: fix stupid infinite loop when GConf is turned off.
2008-11-22 Thomas Thurman <tthurman@gnome.org>
diff --git a/configure.in b/configure.in
index 63b2fa18..9e3569da 100644
--- a/configure.in
+++ b/configure.in
@@ -484,7 +484,7 @@ if test "x$enable_debug" = "xyes"; then
fi
# Warnings are there for a reason
-CFLAGS="$CFLAGS -Wall -Werror"
+CFLAGS="$CFLAGS -Wall -Werror -ansi"
# Use gnome-doc-utils:
GNOME_DOC_INIT([0.9.0])