From: Tor Lillqvist Date: Wed, 21 Oct 2009 17:48:35 +0000 (+0300) Subject: Don't bother with -Werror on Windows for now X-Git-Tag: dbus-1.3.1~166 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=97e5d4e13d331b62cf1754c69b6349660cdaabb6;p=thirdparty%2Fdbus.git Don't bother with -Werror on Windows for now We have so many warnings --- diff --git a/configure.in b/configure.in index 0fd11eca2..2c74f61a1 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