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:
parent
a8c4d88937
commit
13bee96873
|
@ -232,7 +232,7 @@ meson-dist:
|
||||||
MESON_DIST_ARGS: --no-tests
|
MESON_DIST_ARGS: --no-tests
|
||||||
DESTDIR: xserver-tarball/install/
|
DESTDIR: xserver-tarball/install/
|
||||||
|
|
||||||
xf86-driver-build-test:
|
.xf86-driver-build-test:
|
||||||
extends:
|
extends:
|
||||||
- .xorg-image@debian
|
- .xorg-image@debian
|
||||||
- .ci-run-policy
|
- .ci-run-policy
|
||||||
|
|
|
@ -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')
|
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)')
|
||||||
option('xwayland_ei', type: 'combo', choices: ['socket', 'portal', 'false', 'auto'],
|
option('xwayland_ei', type: 'combo', choices: ['socket', 'portal', 'false', 'auto'],
|
||||||
value: 'auto', description: 'Enable emulated input support on Xwayland')
|
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')
|
description: 'Enable Xnest nested X server')
|
||||||
option('xvfb', type: 'boolean', value: true,
|
option('xvfb', type: 'boolean', value: false,
|
||||||
description: 'Enable Xvfb X server')
|
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')
|
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')
|
description: 'Enable Xquartz X server')
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue