829378bba8
For some window managers (fvwm2 and fvwm3) if the X server isn't running and has output it's possible for the window manager to fail or reconfigure randr incorrectly. With xrdp-waitfox: - Install xrdp-waitfox to the BIN dir. - sesman will run xrdp-waitfox as the logged in user. - Set an alarm to exit after 30 seconds. - Try to open env DISPLAY value's display (10 seconds). - Test for RandR extension. - Wait for outputs to appear (10 seconds).
74 lines
952 B
Makefile
74 lines
952 B
Makefile
ACLOCAL_AMFLAGS = -I m4
|
|
AM_DISTCHECK_CONFIGURE_FLAGS = \
|
|
--without-systemdsystemunitdir \
|
|
--enable-strict-locations \
|
|
--enable-tests
|
|
|
|
EXTRA_DIST = \
|
|
COPYING \
|
|
README.md \
|
|
NEWS.md \
|
|
astyle_config.as \
|
|
bootstrap \
|
|
coding_style.md \
|
|
m4 \
|
|
vrplayer
|
|
|
|
if XRDP_NEUTRINORDP
|
|
NEUTRINORDPDIR = neutrinordp
|
|
else
|
|
NEUTRINORDPDIR =
|
|
endif
|
|
|
|
if XRDP_XRDPVR
|
|
XRDPVRDIR = xrdpvr
|
|
else
|
|
XRDPVRDIR =
|
|
endif
|
|
|
|
if XRDP_PAINTER
|
|
PAINTERDIR = libpainter
|
|
else
|
|
PAINTERDIR =
|
|
endif
|
|
|
|
if XRDP_RFXCODEC
|
|
RFXCODECDIR = librfxcodec
|
|
else
|
|
RFXCODECDIR =
|
|
endif
|
|
|
|
if XRDP_ULALACA
|
|
ULALACADIR = ulalaca
|
|
else
|
|
ULALACADIR =
|
|
endif
|
|
|
|
SUBDIRS = \
|
|
common \
|
|
vnc \
|
|
xup \
|
|
mc \
|
|
$(NEUTRINORDPDIR) \
|
|
libipm \
|
|
libxrdp \
|
|
$(PAINTERDIR) \
|
|
$(RFXCODECDIR) \
|
|
sesman \
|
|
xrdp \
|
|
fontutils \
|
|
keygen \
|
|
waitforx \
|
|
docs \
|
|
instfiles \
|
|
genkeymap \
|
|
xrdpapi \
|
|
pkgconfig \
|
|
$(XRDPVRDIR) \
|
|
$(ULALACADIR) \
|
|
tests \
|
|
tools
|
|
|
|
distclean-local:
|
|
-rm -f xrdp_configure_options.h
|