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>2013-09-26 15:22:20 +0100
commit5e6b1349960e4983afca1630084daac94a544db8 (patch)
treea8398fafe6d963f22d1275e75277c3dc5b321122
parent53d1e1aa87a73db22ffe1e2ffe22b9201b79de41 (diff)
downloadtelepathy-glib-5e6b1349960e4983afca1630084daac94a544db8.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 7dcf69dea..d66c8b048 100644
--- a/configure.ac
+++ b/configure.ac
@@ -116,7 +116,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 -