summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2010-04-06 12:33:21 +0100
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2014-03-26 15:41:23 +0000
commitd622628afac82b057fde9315cbb6e1cf022a3f3e (patch)
tree53ebd6cc769883e74393db95b34760a74c7a45a8
parent97143251db33faf3ffb968120f611240e3406841 (diff)
downloadtelepathy-glib-d622628afac82b057fde9315cbb6e1cf022a3f3e.tar.gz
Disable warnings about deprecated functions for stable branch
Since this is a stable branch, we're unlikely to fix uses of deprecated functions, so we shouldn't warn about them.
-rw-r--r--configure.ac3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index be323825b..7060a91c7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -117,7 +117,8 @@ TP_COMPILER_WARNINGS([ERROR_CFLAGS], [test "x$enable_fatal_warnings" = xyes],
format-security \
init-self],
[missing-field-initializers \
- unused-parameter])
+ unused-parameter \
+ deprecated-declarations])
AC_SUBST([ERROR_CFLAGS])
# these aren't really error flags but they serve a similar purpose for us -