From e3d0b6f90f2c64aa52de357a7aac3e3cd33455f4 Mon Sep 17 00:00:00 2001 From: "Owen W. Taylor" Date: Tue, 7 Feb 2012 18:20:14 -0500 Subject: [PATCH] Add -Wno-error=deprecated declarations Even with --enable-compile-warnings=error, avoid erroring out on deprecations for the moment, since we are hitting many Clutter deprecations and some are hard to fix. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 33e79db90..b33f99beb 100644 --- a/configure.ac +++ b/configure.ac @@ -199,7 +199,7 @@ if test "$enable_compile_warnings" != no ; then if test "$enable_compile_warnings" = error ; then case " $CFLAGS " in *[\ \ ]-Werror[\ \ ]*) ;; - *) CFLAGS="$CFLAGS -Werror" ;; + *) CFLAGS="$CFLAGS -Werror -Wno-error=deprecated-declarations" ;; esac fi fi