diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2010-04-06 12:33:21 +0100 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2010-09-15 16:03:34 +0100 |
commit | 3c50603e23cc55e715893dd0aa25a8ae5bdf6fcb (patch) | |
tree | c0d085d2eb6f347b7c296e394a64aef03db9a686 | |
parent | 1e48bb468d40f795be9d86ffafeef0263385ca64 (diff) |
Disable warnings about deprecated functions for stable branchtelepathy-glib-0.11.16
Since this is (about to be) a stable branch, we're unlikely to fix uses of
deprecated functions, so we shouldn't warn about them.
(To be reverted in master after branching)
-rw-r--r-- | configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index e08bcc3fb..5accd7941 100644 --- a/configure.ac +++ b/configure.ac @@ -107,7 +107,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]) |