From 2ce40f23b8276381a75c04d94ee92de580fabaee Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Thu, 5 Jun 2025 12:08:59 +0200 Subject: [PATCH] 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 --- meson_options.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson_options.txt b/meson_options.txt index 94698f218..2beb07d9e 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -2,7 +2,7 @@ option('xorg', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto', description: 'Enable Xorg X Server') option('xephyr', type: 'boolean', value: false, 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') option('glamor', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto', description: 'Enable glamor (default yes for Xorg/Xwayland builds)')