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:
Enrico Weigelt, metux IT consult 2025-06-17 11:21:57 +02:00 committed by Enrico Weigelt
parent 49f5056b45
commit dba86284c8

View File

@ -68,9 +68,9 @@ option('udev', type: 'boolean', value: true)
option('udev_kms', type: 'boolean', value: true) option('udev_kms', type: 'boolean', value: true)
option('hal', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto', option('hal', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto',
description: 'Enable HAL integration') 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') 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') description: 'Enable systemd-logind integration')
option('vgahw', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto', option('vgahw', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto',
description: 'Xorg VGA access module') description: 'Xorg VGA access module')