meson_options: disable Xwayland by default
Xwayland is a separate project/team and has it's own releases, so it's better trying to to intefer with them and disable it by default. It still can be easily enabled via meson arguments, and it's still enabled in the CI. Let distros and operators decide on their own whether they want it. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
parent
41c039948f
commit
2ce40f23b8
|
@ -2,7 +2,7 @@ option('xorg', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto',
|
||||||
description: 'Enable Xorg X Server')
|
description: 'Enable Xorg X Server')
|
||||||
option('xephyr', type: 'boolean', value: false,
|
option('xephyr', type: 'boolean', value: false,
|
||||||
description: 'Enable Xephyr nested X server')
|
description: 'Enable Xephyr nested X server')
|
||||||
option('xwayland', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto',
|
option('xwayland', type: 'combo', choices: ['true', 'false', 'auto'], value: 'false',
|
||||||
description: 'Enable Xwayland X server')
|
description: 'Enable Xwayland X server')
|
||||||
option('glamor', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto',
|
option('glamor', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto',
|
||||||
description: 'Enable glamor (default yes for Xorg/Xwayland builds)')
|
description: 'Enable glamor (default yes for Xorg/Xwayland builds)')
|
||||||
|
|
Loading…
Reference in New Issue