summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2013-09-17 10:50:03 +0100
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2013-10-02 17:52:51 +0100
commit999de507910e3e78d3c91e518318f123c10f346e (patch)
treeccce3183a8ebbe88ee3a6cd013084a5ef266600b
parent414594e993816ba995434aa108edd0e547eeb5f5 (diff)
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.9 branch.
-rw-r--r--configure.ac3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 365d4c5..6cafaeb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -65,7 +65,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 -