added --enable-freerdp configure option

ulab-original
Jay Sorg 14 years ago
parent 4d4f80bfc4
commit 8a4a729a1b

@ -1,11 +1,17 @@
if XRDP_FREERDP
FREERDPDIR = freerdp
else
FREERDPDIR =
endif
SUBDIRS = \ SUBDIRS = \
common \ common \
vnc \ vnc \
rdp \ rdp \
xup \ xup \
mc \ mc \
freerdp \ $(FREERDPDIR) \
libxrdp \ libxrdp \
xrdp \ xrdp \
sesman \ sesman \

@ -23,6 +23,10 @@ AC_ARG_ENABLE(xrdpdebug, AS_HELP_STRING([--enable-xrdpdebug],
[Build debug (default: no)]), [Build debug (default: no)]),
[xrdpdebug=true], [xrdpdebug=false]) [xrdpdebug=true], [xrdpdebug=false])
AM_CONDITIONAL(XRDP_DEBUG, [test x$xrdpdebug = xtrue]) AM_CONDITIONAL(XRDP_DEBUG, [test x$xrdpdebug = xtrue])
AC_ARG_ENABLE(freerdp, AS_HELP_STRING([--enable-freerdp],
[Build freerdp module (default: no)]),
[freerdp=true], [freerdp=false])
AM_CONDITIONAL(XRDP_FREERDP, [test x$freerdp = xtrue])
# checking for openssl # checking for openssl
AC_CHECK_HEADER([openssl/rc4.h], [], AC_CHECK_HEADER([openssl/rc4.h], [],

Loading…
Cancel
Save