meson_options: set default value for systemd support to false
a) the automatic detection logic is broken: it automatically enables it when kms+udev enabled and dbus is found. b) it should be a deliberate decision whether to enable it or not, eg. just having (pieces of) systemd libraries present on the build machine doesn't automatically mean the user/distro actually wants it to be used. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
parent
49f5056b45
commit
dba86284c8
|
@ -68,9 +68,9 @@ option('udev', type: 'boolean', value: true)
|
|||
option('udev_kms', type: 'boolean', value: true)
|
||||
option('hal', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto',
|
||||
description: 'Enable HAL integration')
|
||||
option('systemd_notify', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto',
|
||||
option('systemd_notify', type: 'combo', choices: ['true', 'false', 'auto'], value: 'false',
|
||||
description: 'Enable systemd-notify support')
|
||||
option('systemd_logind', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto',
|
||||
option('systemd_logind', type: 'combo', choices: ['true', 'false', 'auto'], value: 'false',
|
||||
description: 'Enable systemd-logind integration')
|
||||
option('vgahw', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto',
|
||||
description: 'Xorg VGA access module')
|
||||
|
|
Loading…
Reference in New Issue