From: Simon McVittie Date: Tue, 28 Jun 2022 10:52:02 +0000 (+0100) Subject: meson: Don't define DBUS_ENABLE_ASSERTS X-Git-Tag: dbus-1.15.0~32^2~49 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9c9fae18dda62e0d73c92b139984f5143063f9f5;p=thirdparty%2Fdbus.git 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 --- diff --git a/meson.build b/meson.build index ad0e6d7bd..4f2632fe6 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)