summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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])