From ea061b0f4644efaf7d0cb4673b03af9b98b23d01 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Wed, 19 Oct 2011 09:57:38 -0400 Subject: [PATCH] configure: Turn off -Werror by default We will eventually land jhbuild work to grep for warnings; for now breaking the build is just too painful. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 18b14aab3..f0ce5e3a6 100644 --- a/configure.ac +++ b/configure.ac @@ -187,7 +187,7 @@ GTK_DOC_CHECK([1.15], [--flavour no-tmpl]) # minimum/yes/maximum are the same, however. AC_ARG_ENABLE(compile_warnings, AS_HELP_STRING([--enable-compile-warnings=@<:@no/minimum/yes/maximum/error@:>@],[Turn on compiler warnings]),, - enable_compile_warnings=error) + enable_compile_warnings=maximum) changequote(,)dnl if test "$enable_compile_warnings" != no ; then