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>2012-10-03 09:45:48 +0100
commit74b79c60c152d7ac49f091c88c2001a6dcec93f1 (patch)
tree13235395989970ce3177d223be0be4915e927a64
parented43abb7603e1286dbcbefbad75f354a654cae37 (diff)
downloadtelepathy-glib-74b79c60c152d7ac49f091c88c2001a6dcec93f1.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. To be reverted in the 0.21 branch.
-rw-r--r--configure.ac3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index fb774a7b6..eb65e3e85 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 -