From 97e5d4e13d331b62cf1754c69b6349660cdaabb6 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Wed, 21 Oct 2009 20:48:35 +0300 Subject: [PATCH] Don't bother with -Werror on Windows for now We have so many warnings --- configure.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 0fd11ec..2c74f61 100644 --- a/configure.in +++ b/configure.in @@ -1023,7 +1023,8 @@ ld_supports_flag() { fi } -if test x$USE_MAINTAINER_MODE = xyes; then +# Don't bother with -Werror on Windows for now, too many warnings +if test x$dbus_win != xyes -a x$USE_MAINTAINER_MODE = xyes; then if cc_supports_flag "-Werror"; then CFLAGS="$CFLAGS -Werror" fi -- 2.7.4