From: Simon McVittie Date: Fri, 13 Dec 2024 10:48:23 +0000 (+0000) Subject: meson: Consistently use boolean defaults for boolean options X-Git-Tag: dbus-1.16.0~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7094a4047e44458aff3f8aea465938be9b8e9f94;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 (cherry picked from commit dc56afed594c63f3b29d68af33397072a300c310) --- diff --git a/meson_options.txt b/meson_options.txt index 1fc8a2ad0..ee06cb894 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -139,7 +139,7 @@ option( option( 'message_bus', type: 'boolean', - value: 'true', + value: true, description: 'Enable dbus-daemon' ) @@ -253,7 +253,7 @@ option( option( 'tools', type: 'boolean', - value: 'true', + value: true, description: 'Enable CLI tools such as dbus-send and dbus-monitor' )