mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-20 15:10:02 +01:00
It turns out xdmx currently crashes when any client attempts to use GL and it has been in such state for about 14 years. There was a patch to fix the problem [1] 4 years ago, but it never got merged. The last activity on any bugs referring to xdmx has been more than 4 years ago. Given such situation, I find it unlikely that anyone is still using xdmx and just having the code is a drain of resources. [1]: https://lists.x.org/archives/xorg-devel/2017-June/053919.html Signed-off-by: Povilas Kanapickas <povilas@radix.lt>
27 lines
317 B
Meson
27 lines
317 B
Meson
if get_option('xephyr')
|
|
subdir('kdrive')
|
|
endif
|
|
|
|
if get_option('xvfb')
|
|
subdir('vfb')
|
|
endif
|
|
|
|
if build_xnest
|
|
subdir('xnest')
|
|
endif
|
|
|
|
if build_xorg
|
|
subdir('xfree86')
|
|
endif
|
|
|
|
if build_xquartz
|
|
subdir('xquartz')
|
|
endif
|
|
|
|
if build_xwayland
|
|
subdir('xwayland')
|
|
endif
|
|
|
|
if build_xwin
|
|
subdir('xwin')
|
|
endif
|