mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-05-05 08:48:07 +02:00
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:
parent
3e4a52743e
commit
dc56afed59
1 changed files with 2 additions and 2 deletions
|
|
@ -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'
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue