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-04-12 13:28:14 +0100
commit07d4cb30fa07bf3dca05bc77aa28170ba062c77e (patch)
treee03566d1fa6ee7b4bfdf3b8ed51f3c0562289dab
parentabacdfed03e8e0247e29d760a138400f3868e95b (diff)
downloadtelepathy-glib-07d4cb30fa07bf3dca05bc77aa28170ba062c77e.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 3748b6705..1af933c8d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -91,7 +91,8 @@ TP_COMPILER_WARNINGS([ERROR_CFLAGS], [test "x$official_release" = xno],
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 -