From: Simon McVittie Date: Fri, 13 Dec 2024 10:48:23 +0000 (+0000) Subject: meson: Consistently use boolean defaults for boolean options X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dc56afed594c63f3b29d68af33397072a300c310;p=thirdparty%2Fdbus.git meson: Consistently use boolean defaults for boolean options Meson accepts either booleans or strings as defaults for a boolean option, but recommends booleans, and raises deprecation warnings for strings. Signed-off-by: Simon McVittie --- diff --git a/meson_options.txt b/meson_options.txt index 3ce22c9b9..1bd00579f 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -146,7 +146,7 @@ option( option( 'message_bus', type: 'boolean', - value: 'true', + value: true, description: 'Enable dbus-daemon' ) @@ -260,7 +260,7 @@ option( option( 'tools', type: 'boolean', - value: 'true', + value: true, description: 'Enable CLI tools such as dbus-send and dbus-monitor' )