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 <smcv@collabora.com>
This commit is contained in:
Simon McVittie 2024-12-13 10:48:23 +00:00
parent 3e4a52743e
commit dc56afed59

View file

@ -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'
)