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 <smcv@collabora.com>
(cherry picked from commit
dc56afed594c63f3b29d68af33397072a300c310)
option(
'message_bus',
type: 'boolean',
- value: 'true',
+ value: true,
description: 'Enable dbus-daemon'
)
option(
'tools',
type: 'boolean',
- value: 'true',
+ value: true,
description: 'Enable CLI tools such as dbus-send and dbus-monitor'
)