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>2010-04-06 12:33:21 +0100
commit74601483f5a8e632d0492870c871dc83eb734991 (patch)
treef4bab3b6178a59a484730204047e5bb129f943e4
parent8ffabab5f66afb85504af54ba2aa3b86dc8a9b08 (diff)
Disable warnings about deprecated functions for this 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 a634f400a..6b385aaf5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -78,7 +78,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])
AM_CONDITIONAL([OFFICIAL_RELEASE], [test "x$official_release" = xyes])