summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOwen W. Taylor <otaylor@fishsoup.net>2012-02-07 18:20:14 -0500
committerOwen W. Taylor <otaylor@fishsoup.net>2012-02-07 18:30:01 -0500
commit2e63de5c0a7c3d9d64908d55ec99aaa5f50ff6b9 (patch)
tree170b67ab4764e109d2d3cb4e069725e706785a2b
parent7319b10d72b1fd6796c64bce1034c20f5ae2f101 (diff)
downloadmutter-2e63de5c0a7c3d9d64908d55ec99aaa5f50ff6b9.tar.gz
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.
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index da8e1d63d..465daebe3 100644
--- a/configure.in
+++ b/configure.in
@@ -470,7 +470,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