mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-20 04:40: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>
41 lines
582 B
Makefile
41 lines
582 B
Makefile
if XORG
|
|
XORG_SUBDIRS = xfree86
|
|
endif
|
|
|
|
if XVFB
|
|
XVFB_SUBDIRS = vfb
|
|
endif
|
|
|
|
if XNEST
|
|
XNEST_SUBDIRS = xnest
|
|
endif
|
|
|
|
if XWIN
|
|
XWIN_SUBDIRS = xwin
|
|
endif
|
|
|
|
if KDRIVE
|
|
KDRIVE_SUBDIRS = kdrive
|
|
endif
|
|
|
|
if XQUARTZ
|
|
XQUARTZ_SUBDIRS = xquartz
|
|
endif
|
|
|
|
if XWAYLAND
|
|
XWAYLAND_SUBDIRS = xwayland
|
|
endif
|
|
|
|
SUBDIRS = \
|
|
$(XORG_SUBDIRS) \
|
|
$(XWIN_SUBDIRS) \
|
|
$(XVFB_SUBDIRS) \
|
|
$(XNEST_SUBDIRS) \
|
|
$(KDRIVE_SUBDIRS) \
|
|
$(XQUARTZ_SUBDIRS) \
|
|
$(XWAYLAND_SUBDIRS)
|
|
|
|
DIST_SUBDIRS = xfree86 vfb xnest xwin xquartz kdrive xwayland
|
|
|
|
relink:
|
|
$(AM_V_at)for i in $(SUBDIRS) ; do $(MAKE) -C $$i relink || exit 1 ; done
|