summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorSimon McVittie <smcv@collabora.com>2017-10-30 12:31:03 +0000
committerSimon McVittie <smcv@collabora.com>2017-10-30 12:31:03 +0000
commit93efaf78732176602e42cb8c8b25e19c3d538f1a (patch)
treea0c992438fbc2fef53ca2770ac37fe4717925ccb /configure.ac
parentd5746922de128d7804322aa07fcd0d165438900a (diff)
downloaddbus-93efaf78732176602e42cb8c8b25e19c3d538f1a.tar.gz
Disable deprecation warnings for stable branch
We're not going to replace deprecated functions here, similar to commit 88e0ccb2 in the dbus-1.10 branch. Signed-off-by: Simon McVittie <smcv@collabora.com>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index f8e053d7..6177b3c9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -323,9 +323,12 @@ fi
dnl Intentional:
dnl - $DISABLE_WARNINGS disables unused-label warnings if not
dnl checking or not asserting (tested further below)
+dnl - we are not going to stop using deprecated functions on a stable
+dnl branch
dnl - missing field initializers being 0 is a C feature, not a bug
dnl - unused-parameter is to make writing callbacks less annoying
DISABLE_WARNINGS="$DISABLE_WARNINGS
+ -Wno-deprecated-declarations
-Wno-missing-field-initializers
-Wno-unused-parameter"