From 9c9fae18dda62e0d73c92b139984f5143063f9f5 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Tue, 28 Jun 2022 11:52:02 +0100 Subject: [PATCH] meson: Don't define DBUS_ENABLE_ASSERTS The other build systems don't define this, and it's too confusing to have both DBUS_ENABLE_ASSERTS and DBUS_ENABLE_ASSERT. Signed-off-by: Simon McVittie --- meson.build | 2 -- 1 file changed, 2 deletions(-) diff --git a/meson.build b/meson.build index ad0e6d7b..4f2632fe 100644 --- a/meson.build +++ b/meson.build @@ -647,8 +647,6 @@ config.set('DBUS_ENABLE_VERBOSE_MODE', verbose_mode) # Asserts defaults to developer mode asserts = get_option('asserts') -config.set('DBUS_ENABLE_ASSERTS', asserts) - config.set('DBUS_ENABLE_ASSERT', asserts ? 1 : false) config.set('DBUS_DISABLE_ASSERT', not asserts ? 1 : false)