meson_options: disable all DDX'es but Xnest

This branch is specifically for just Xnest only, so disable anything else
per default. The others still can be enabled via meson options.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult 2024-08-29 14:34:35 +02:00
parent d84bca91ec
commit 8eb6c1f173
2 changed files with 7 additions and 7 deletions

View File

@ -232,7 +232,7 @@ meson-dist:
MESON_DIST_ARGS: --no-tests
DESTDIR: xserver-tarball/install/
xf86-driver-build-test:
.xf86-driver-build-test:
extends:
- .xorg-image@debian
- .ci-run-policy

View File

@ -1,20 +1,20 @@
option('xorg', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto',
option('xorg', type: 'combo', choices: ['true', 'false', 'auto'], value: 'false',
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)')
option('xwayland_ei', type: 'combo', choices: ['socket', 'portal', 'false', 'auto'],
value: 'auto', description: 'Enable emulated input support on Xwayland')
option('xnest', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto',
option('xnest', type: 'combo', choices: ['true', 'false', 'auto'], value: 'true',
description: 'Enable Xnest nested X server')
option('xvfb', type: 'boolean', value: true,
option('xvfb', type: 'boolean', value: false,
description: 'Enable Xvfb X server')
option('xwin', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto',
option('xwin', type: 'combo', choices: ['true', 'false', 'auto'], value: 'false',
description: 'Enable XWin X server')
option('xquartz', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto',
option('xquartz', type: 'combo', choices: ['true', 'false', 'auto'], value: 'false',
description: 'Enable Xquartz X server')