2008-08-03 11:30:03 +04:00
|
|
|
# Process this file with autoconf to produce a configure script
|
|
|
|
|
2016-03-04 09:21:49 +03:00
|
|
|
AC_PREREQ(2.65)
|
2016-12-20 22:00:18 +03:00
|
|
|
AC_INIT([xrdp], [0.9.1], [xrdp-devel@googlegroups.com])
|
2013-06-12 12:08:42 +04:00
|
|
|
AC_CONFIG_HEADERS(config_ac.h:config_ac-h.in)
|
2016-02-12 10:40:27 +03:00
|
|
|
AM_INIT_AUTOMAKE([1.7.2 foreign])
|
2016-02-10 11:16:06 +03:00
|
|
|
AC_CONFIG_MACRO_DIR([m4])
|
2008-08-03 11:30:03 +04:00
|
|
|
AC_PROG_CC
|
|
|
|
AC_C_CONST
|
|
|
|
AC_PROG_LIBTOOL
|
2017-01-01 11:54:19 +03:00
|
|
|
|
2014-10-28 01:44:17 +03:00
|
|
|
PKG_PROG_PKG_CONFIG
|
2017-01-01 11:54:19 +03:00
|
|
|
if test "x$PKG_CONFIG" = "x"; then
|
|
|
|
AC_MSG_ERROR([please install pkg-config])
|
|
|
|
fi
|
2015-03-12 14:22:35 +03:00
|
|
|
|
2016-12-17 00:49:33 +03:00
|
|
|
AC_CONFIG_SUBDIRS([libpainter librfxcodec])
|
2016-12-12 10:09:15 +03:00
|
|
|
|
2016-02-12 09:15:22 +03:00
|
|
|
# Use silent rules by default if supported by Automake
|
|
|
|
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
|
|
|
|
|
2016-03-04 09:21:49 +03:00
|
|
|
AX_CFLAGS_WARN_ALL
|
2016-06-22 02:30:17 +03:00
|
|
|
AX_APPEND_COMPILE_FLAGS([-Wwrite-strings])
|
2016-03-04 09:22:20 +03:00
|
|
|
AX_GCC_FUNC_ATTRIBUTE([format])
|
2016-08-31 21:15:25 +03:00
|
|
|
AX_TYPE_SOCKLEN_T
|
2016-03-04 09:21:49 +03:00
|
|
|
|
2015-03-12 14:22:35 +03:00
|
|
|
case $host_os in
|
|
|
|
*linux*)
|
|
|
|
linux=yes
|
|
|
|
;;
|
|
|
|
*freebsd*)
|
|
|
|
freebsd=yes
|
|
|
|
;;
|
|
|
|
*netbsd*)
|
|
|
|
netbsd=yes
|
|
|
|
;;
|
|
|
|
*openbsd*)
|
|
|
|
openbsd=yes
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
AM_CONDITIONAL(LINUX, [test "x$linux" = xyes])
|
|
|
|
AM_CONDITIONAL(FREEBSD, [test "x$freebsd" = xyes])
|
|
|
|
AM_CONDITIONAL(OPENBSD, [test "x$openbsd" = xyes])
|
|
|
|
AM_CONDITIONAL(NETBSD, [test "x$netbsd" = xyes])
|
|
|
|
|
2012-05-26 21:15:45 +04:00
|
|
|
AC_ARG_WITH([systemdsystemunitdir],
|
|
|
|
AS_HELP_STRING([--with-systemdsystemunitdir=DIR], [Directory for systemd service files]),
|
|
|
|
[], [with_systemdsystemunitdir=$($PKG_CONFIG --variable=systemdsystemunitdir systemd)])
|
|
|
|
if test "x$with_systemdsystemunitdir" != xno; then
|
|
|
|
AC_SUBST([systemdsystemunitdir], [$with_systemdsystemunitdir])
|
|
|
|
fi
|
|
|
|
AM_CONDITIONAL(HAVE_SYSTEMD, [test -n "$with_systemdsystemunitdir" -a "x$with_systemdsystemunitdir" != xno ])
|
|
|
|
|
2014-10-28 01:32:56 +03:00
|
|
|
AC_ARG_ENABLE(pam, AS_HELP_STRING([--disable-pam],
|
|
|
|
[Build PAM support (default: yes)]),
|
|
|
|
[], [enable_pam=yes])
|
|
|
|
AM_CONDITIONAL(SESMAN_NOPAM, [test x$enable_pam != xyes])
|
2015-03-10 07:36:52 +03:00
|
|
|
AC_ARG_ENABLE(ipv6, AS_HELP_STRING([--enable-ipv6],
|
|
|
|
[Build IPv6 support (default: no, experimental)]),
|
|
|
|
[], [enable_ipv6=no])
|
2015-07-01 07:19:38 +03:00
|
|
|
AC_ARG_ENABLE(ipv6only, AS_HELP_STRING([--enable-ipv6only],
|
|
|
|
[Build IPv6-only (default: no)]),
|
|
|
|
[], [enable_ipv6only=no])
|
2008-08-09 12:35:05 +04:00
|
|
|
AC_ARG_ENABLE(kerberos, AS_HELP_STRING([--enable-kerberos],
|
|
|
|
[Build kerberos support (default: no)]),
|
2014-10-28 01:22:22 +03:00
|
|
|
[], [enable_kerberos=no])
|
2014-11-21 16:22:15 +03:00
|
|
|
AC_ARG_ENABLE(bsd, AS_HELP_STRING([--enable-bsd],
|
|
|
|
[Build BSD auth support (default: no)]),
|
|
|
|
[bsd=true], [bsd=false])
|
|
|
|
AM_CONDITIONAL(SESMAN_BSD, [test x$bsd = xtrue])
|
2014-10-28 01:22:22 +03:00
|
|
|
AM_CONDITIONAL(SESMAN_KERBEROS, [test x$enable_kerberos = xyes])
|
2008-08-09 12:35:05 +04:00
|
|
|
AC_ARG_ENABLE(pamuserpass, AS_HELP_STRING([--enable-pamuserpass],
|
|
|
|
[Build pam userpass support (default: no)]),
|
2014-10-28 01:22:22 +03:00
|
|
|
[], [enable_pamuserpass=no])
|
|
|
|
AM_CONDITIONAL(SESMAN_PAMUSERPASS, [test x$enable_pamuserpass = xyes])
|
2016-12-31 07:00:46 +03:00
|
|
|
AC_ARG_ENABLE(pam-config, AS_HELP_STRING([--enable-pam-config=CONF],
|
|
|
|
[Select PAM config to install: debian, redhat, suse, unix
|
|
|
|
(default: autodetect)]))
|
|
|
|
|
2010-03-18 01:06:50 +03:00
|
|
|
AC_ARG_ENABLE(xrdpdebug, AS_HELP_STRING([--enable-xrdpdebug],
|
|
|
|
[Build debug (default: no)]),
|
2014-10-28 01:22:22 +03:00
|
|
|
[], [enable_xrdpdebug=no])
|
|
|
|
AM_CONDITIONAL(XRDP_DEBUG, [test x$enable_xrdpdebug = xyes])
|
2013-05-03 13:07:02 +04:00
|
|
|
AC_ARG_ENABLE(neutrinordp, AS_HELP_STRING([--enable-neutrinordp],
|
|
|
|
[Build neutrinordp module (default: no)]),
|
2014-10-28 01:22:22 +03:00
|
|
|
[], [enable_neutrinordp=no])
|
|
|
|
AM_CONDITIONAL(XRDP_NEUTRINORDP, [test x$enable_neutrinordp = xyes])
|
2012-04-08 09:41:46 +04:00
|
|
|
AC_ARG_ENABLE(jpeg, AS_HELP_STRING([--enable-jpeg],
|
|
|
|
[Build jpeg module (default: no)]),
|
2014-10-28 01:22:22 +03:00
|
|
|
[], [enable_jpeg=no])
|
|
|
|
AM_CONDITIONAL(XRDP_JPEG, [test x$enable_jpeg = xyes])
|
2013-09-16 22:14:48 +04:00
|
|
|
AC_ARG_ENABLE(tjpeg, AS_HELP_STRING([--enable-tjpeg],
|
2014-03-25 04:55:04 +04:00
|
|
|
[Build turbo jpeg module (default: no)]),
|
2014-10-28 01:22:22 +03:00
|
|
|
[], [enable_tjpeg=no])
|
|
|
|
AM_CONDITIONAL(XRDP_TJPEG, [test x$enable_tjpeg = xyes])
|
2012-11-03 10:10:36 +04:00
|
|
|
AC_ARG_ENABLE(fuse, AS_HELP_STRING([--enable-fuse],
|
|
|
|
[Build fuse(clipboard file / drive redir) (default: no)]),
|
2014-10-28 01:22:22 +03:00
|
|
|
[], [enable_fuse=no])
|
|
|
|
AM_CONDITIONAL(XRDP_FUSE, [test x$enable_fuse = xyes])
|
2012-11-11 05:53:08 +04:00
|
|
|
AC_ARG_ENABLE(xrdpvr, AS_HELP_STRING([--enable-xrdpvr],
|
|
|
|
[Build xrdpvr module (default: no)]),
|
2014-10-28 01:22:22 +03:00
|
|
|
[], [enable_xrdpvr=no])
|
|
|
|
AM_CONDITIONAL(XRDP_XRDPVR, [test x$enable_xrdpvr = xyes])
|
2014-07-11 07:14:40 +04:00
|
|
|
AC_ARG_ENABLE(rfxcodec, AS_HELP_STRING([--enable-rfxcodec],
|
|
|
|
[Build using librfxcodec (default: no)]),
|
2014-10-28 01:22:22 +03:00
|
|
|
[], [enable_rfxcodec=no])
|
|
|
|
AM_CONDITIONAL(XRDP_RFXCODEC, [test x$enable_rfxcodec = xyes])
|
2015-01-10 10:31:28 +03:00
|
|
|
AC_ARG_ENABLE(opus, AS_HELP_STRING([--enable-opus],
|
|
|
|
[Build opus(audio codec) (default: no)]),
|
|
|
|
[], [enable_opus=no])
|
|
|
|
AM_CONDITIONAL(XRDP_OPUS, [test x$enable_opus = xyes])
|
2016-07-14 03:44:07 +03:00
|
|
|
AC_ARG_ENABLE(mp3lame, AS_HELP_STRING([--enable-mp3lame],
|
|
|
|
[Build lame mp3(audio codec) (default: no)]),
|
|
|
|
[], [enable_mp3lame=no])
|
|
|
|
AM_CONDITIONAL(XRDP_MP3LAME, [test x$enable_mp3lame = xyes])
|
2016-08-09 06:02:10 +03:00
|
|
|
AC_ARG_ENABLE(pixman, AS_HELP_STRING([--enable-pixman],
|
|
|
|
[Use pixman library (default: no)]),
|
2016-08-12 08:18:26 +03:00
|
|
|
[], [enable_pixman=no])
|
2016-08-09 06:02:10 +03:00
|
|
|
AM_CONDITIONAL(XRDP_PIXMAN, [test x$enable_pixman = xyes])
|
2016-12-16 08:17:50 +03:00
|
|
|
AM_CONDITIONAL(XRDP_PAINTER, [test x$enable_painter = xyes])
|
|
|
|
AC_ARG_ENABLE(painter, AS_HELP_STRING([--enable-painter],
|
|
|
|
[Use painter library (default: no)]),
|
|
|
|
[], [enable_painter=no])
|
|
|
|
AM_CONDITIONAL(XRDP_PAINTER, [test x$enable_painter = xyes])
|
2009-10-09 22:20:56 +04:00
|
|
|
|
2016-12-20 21:38:04 +03:00
|
|
|
# Don't fail without working nasm if rfxcodec is not enabled
|
|
|
|
if test "x$enable_rfxcodec" != xyes; then
|
|
|
|
with_simd=no
|
|
|
|
export with_simd
|
|
|
|
fi
|
|
|
|
|
2016-11-30 03:25:37 +03:00
|
|
|
# Check if -ldl is needed to use dlopen()
|
|
|
|
DLOPEN_LIBS=
|
|
|
|
AC_CHECK_FUNC(dlopen, [],
|
|
|
|
[AC_CHECK_LIB(dl, dlopen, [DLOPEN_LIBS=-ldl])])
|
|
|
|
AC_SUBST(DLOPEN_LIBS)
|
|
|
|
|
2009-10-09 22:20:56 +04:00
|
|
|
# checking for openssl
|
2016-11-30 04:00:09 +03:00
|
|
|
PKG_CHECK_MODULES([OPENSSL], [openssl >= 0], [],
|
|
|
|
[AC_MSG_ERROR([please install libssl-dev or openssl-devel])])
|
2009-10-09 22:20:56 +04:00
|
|
|
|
2015-03-10 12:01:20 +03:00
|
|
|
# checking for pam variation
|
|
|
|
# Linux-PAM is used in Linux systems
|
|
|
|
# OpenPAM is used by FreeBSD, NetBSD, DragonFly BSD and OS X
|
|
|
|
# OpenBSD uses BSD Authentication rather than both PAMs
|
|
|
|
AC_CHECK_HEADER([security/_pam_types.h],
|
|
|
|
[AC_DEFINE([HAVE__PAM_TYPES_H], 1, [Using Linux-PAM], [])])
|
|
|
|
AC_CHECK_HEADER([security/pam_constants.h],
|
|
|
|
[AC_DEFINE([HAVE_PAM_CONSTANTS_H], 1, [Using OpenPAM], [])])
|
|
|
|
|
2009-10-09 22:20:56 +04:00
|
|
|
# checking if pam should be autodetected.
|
2014-10-28 01:32:56 +03:00
|
|
|
if test "x$enable_pam" = "xyes"
|
2009-10-09 22:20:56 +04:00
|
|
|
then
|
2014-10-28 01:22:22 +03:00
|
|
|
if test "x$enable_kerberos" != "xyes"
|
2009-10-09 22:20:56 +04:00
|
|
|
then
|
2014-11-21 16:22:15 +03:00
|
|
|
if test -z "$enable_bsd"
|
|
|
|
then
|
|
|
|
AC_CHECK_HEADER([security/pam_appl.h], [],
|
|
|
|
[AC_MSG_ERROR([please install libpam0g-dev or pam-devel])])
|
|
|
|
fi
|
2009-10-09 22:20:56 +04:00
|
|
|
fi
|
2016-12-31 07:00:46 +03:00
|
|
|
if test "x$enable_pam_config" = "x"; then
|
|
|
|
PAM_RULES="auto"
|
|
|
|
else
|
|
|
|
pam_config_file="$srcdir/instfiles/pam.d/xrdp-sesman.$enable_pam_config"
|
|
|
|
if test -f "$pam_config_file"; then
|
|
|
|
PAM_RULES="$enable_pam_config"
|
|
|
|
else
|
|
|
|
AC_MSG_ERROR([PAM file "$pam_config_file" is not available])
|
|
|
|
fi
|
|
|
|
fi
|
2009-10-09 22:20:56 +04:00
|
|
|
fi
|
|
|
|
|
2016-12-31 07:00:46 +03:00
|
|
|
AC_SUBST(PAM_RULES)
|
|
|
|
|
2015-07-01 07:19:38 +03:00
|
|
|
if test "x$enable_ipv6only" = "xyes"
|
|
|
|
then
|
|
|
|
enable_ipv6=yes
|
|
|
|
AC_DEFINE([XRDP_ENABLE_IPV6ONLY],1,[Enable IPv6 only])
|
|
|
|
fi
|
|
|
|
|
2015-03-10 07:36:52 +03:00
|
|
|
if test "x$enable_ipv6" = "xyes"
|
|
|
|
then
|
|
|
|
AC_DEFINE([XRDP_ENABLE_IPV6],1,[Enable IPv6])
|
|
|
|
fi
|
|
|
|
|
2014-11-21 17:00:01 +03:00
|
|
|
if test "x$enable_pam" != "xyes" || test "x$bsd" = "xtrue"
|
2013-02-07 14:08:28 +04:00
|
|
|
then
|
|
|
|
AC_DEFINE([USE_NOPAM],1,[Disable PAM])
|
|
|
|
fi
|
|
|
|
|
2013-05-03 13:07:02 +04:00
|
|
|
AS_IF( [test "x$enable_neutrinordp" = "xyes"] , [PKG_CHECK_MODULES(FREERDP, freerdp >= 1.0.0)] )
|
|
|
|
|
2012-08-02 21:48:59 +04:00
|
|
|
# checking for libjpeg
|
2014-10-28 01:22:22 +03:00
|
|
|
if test "x$enable_jpeg" = "xyes"
|
2012-04-08 09:41:46 +04:00
|
|
|
then
|
|
|
|
AC_CHECK_HEADER([jpeglib.h], [],
|
|
|
|
[AC_MSG_ERROR([please install libjpeg-dev or libjpeg-devel])])
|
|
|
|
fi
|
|
|
|
|
2014-10-28 01:22:22 +03:00
|
|
|
if test "x$enable_xrdpdebug" = "xyes"
|
2013-10-24 22:21:13 +04:00
|
|
|
then
|
|
|
|
CFLAGS="-g -O0"
|
|
|
|
fi
|
|
|
|
|
2012-11-03 10:10:36 +04:00
|
|
|
# checking for fuse
|
2014-10-28 01:22:22 +03:00
|
|
|
if test "x$enable_fuse" = "xyes"
|
2012-11-03 10:10:36 +04:00
|
|
|
then
|
2015-03-18 05:40:15 +03:00
|
|
|
PKG_CHECK_MODULES([FUSE], [fuse >= 2.6], [],
|
|
|
|
[AC_MSG_ERROR([please install libfuse-dev or fuse-devel])])
|
2012-11-03 10:10:36 +04:00
|
|
|
fi
|
|
|
|
|
2015-01-10 10:31:28 +03:00
|
|
|
# checking for opus
|
|
|
|
if test "x$enable_opus" = "xyes"
|
|
|
|
then
|
|
|
|
AC_CHECK_HEADER([opus/opus.h], [],
|
|
|
|
[AC_MSG_ERROR([please install libopus-dev or opus-devel])])
|
|
|
|
fi
|
|
|
|
|
2016-07-14 03:44:07 +03:00
|
|
|
# checking for lame mp3
|
|
|
|
if test "x$enable_mp3lame" = "xyes"
|
|
|
|
then
|
|
|
|
AC_CHECK_HEADER([lame/lame.h], [],
|
|
|
|
[AC_MSG_ERROR([please install libmp3lame-dev or lamemp3-devel])])
|
|
|
|
fi
|
|
|
|
|
2016-12-04 23:01:35 +03:00
|
|
|
AS_IF( [test "x$enable_pixman" = "xyes"] , [PKG_CHECK_MODULES(PIXMAN, pixman-1 >= 0.1.0)] )
|
2016-08-09 06:02:10 +03:00
|
|
|
|
2014-03-24 04:45:40 +04:00
|
|
|
# checking for TurboJPEG
|
2014-10-28 01:22:22 +03:00
|
|
|
if test "x$enable_tjpeg" = "xyes"
|
2014-03-24 23:03:17 +04:00
|
|
|
then
|
2014-03-24 04:45:40 +04:00
|
|
|
if test ! -z "$TURBOJPEG_PATH"
|
|
|
|
then
|
|
|
|
# env var TURBOJPEG_PATH has been defined, use that
|
|
|
|
AC_CHECK_HEADER([$TURBOJPEG_PATH/include/turbojpeg.h], [],
|
|
|
|
[AC_MSG_ERROR([could not find TurboJPEG in dir specified by env variable TURBOJPEG_PATH ($TURBOJPEG_PATH)])])
|
|
|
|
|
|
|
|
AC_SUBST(TurboJpegIncDir, ["-I$TURBOJPEG_PATH/include"])
|
|
|
|
AC_SUBST(TurboJpegLibDir, ["-L$TURBOJPEG_PATH/lib -Wl,-rpath -Wl,$TURBOJPEG_PATH/lib"])
|
|
|
|
elif test -e /opt/libjpeg-turbo/lib64
|
|
|
|
then
|
|
|
|
# TurboJPEG has been installed to /opt on a 64 bit m/c
|
|
|
|
AC_SUBST(TurboJpegIncDir, ["-I/opt/libjpeg-turbo/include"])
|
|
|
|
AC_SUBST(TurboJpegLibDir, ["-L/opt/libjpeg-turbo/lib64 -Wl,-rpath -Wl,/opt/libjpeg-turbo/lib64"])
|
|
|
|
elif test -e /opt/libjpeg-turbo/lib32
|
|
|
|
then
|
|
|
|
# TurboJPEG has been installed to /opt on a 32 bit m/c
|
|
|
|
AC_SUBST(TurboJpegIncDir, ["-I/opt/libjpeg-turbo/include"])
|
|
|
|
AC_SUBST(TurboJpegLibDir, ["-L/opt/libjpeg-turbo/lib32 -Wl,-rpath -Wl,/opt/libjpeg-turbo/lib32"])
|
|
|
|
else
|
|
|
|
# check in default location
|
|
|
|
AC_CHECK_HEADER([/usr/include/turbojpeg.h], [],
|
|
|
|
[AC_MSG_ERROR([please install TurboJPEG ])])
|
|
|
|
AC_SUBST(TurboJpegIncDir, [""])
|
|
|
|
AC_SUBST(TurboJpegLibDir, [""])
|
|
|
|
fi
|
2014-03-24 23:03:17 +04:00
|
|
|
fi
|
2014-03-24 04:45:40 +04:00
|
|
|
|
2016-01-30 22:42:39 +03:00
|
|
|
AC_PATH_XTRA
|
|
|
|
if test "x$no_x" == "xyes"; then
|
|
|
|
AC_MSG_ERROR([please install libx11-dev or libX11-devel])
|
|
|
|
fi
|
|
|
|
|
|
|
|
save_CFLAGS="$CFLAGS"
|
|
|
|
CFLAGS="$CFLAGS $X_CFLAGS"
|
|
|
|
|
|
|
|
# checking for Xfixes
|
2009-10-11 09:33:30 +04:00
|
|
|
AC_CHECK_HEADER([X11/extensions/Xfixes.h], [],
|
2016-12-31 11:51:13 +03:00
|
|
|
[AC_MSG_ERROR([please install libxfixes-dev or libXfixes-devel])],
|
2009-10-11 09:33:30 +04:00
|
|
|
[#include <X11/Xlib.h>])
|
2016-01-30 22:42:39 +03:00
|
|
|
|
|
|
|
# checking for Xrandr
|
2014-03-18 00:12:46 +04:00
|
|
|
AC_CHECK_HEADER([X11/extensions/Xrandr.h], [],
|
|
|
|
[AC_MSG_ERROR([please install libxrandr-dev or libXrandr-devel])],
|
|
|
|
[#include <X11/Xlib.h>])
|
2009-10-09 22:20:56 +04:00
|
|
|
|
2016-01-30 22:42:39 +03:00
|
|
|
CFLAGS="$save_CFLAGS"
|
|
|
|
|
2016-02-10 21:24:09 +03:00
|
|
|
AC_SUBST([moduledir], '${libdir}/xrdp')
|
|
|
|
|
2008-08-17 11:13:41 +04:00
|
|
|
if test "x${prefix}" = "xNONE" ; then
|
2009-05-19 08:23:49 +04:00
|
|
|
sysconfdir="/etc";
|
|
|
|
localstatedir="/var";
|
2008-08-12 09:19:59 +04:00
|
|
|
fi
|
2016-11-17 22:57:10 +03:00
|
|
|
|
2016-11-21 08:58:31 +03:00
|
|
|
PKG_INSTALLDIR
|
2016-11-17 22:57:10 +03:00
|
|
|
|
2016-11-29 11:42:48 +03:00
|
|
|
AC_CHECK_HEADERS([sys/prctl.h])
|
|
|
|
|
2016-11-18 03:35:33 +03:00
|
|
|
AC_CONFIG_FILES([
|
|
|
|
common/Makefile
|
|
|
|
docs/Makefile
|
|
|
|
docs/man/Makefile
|
|
|
|
genkeymap/Makefile
|
|
|
|
instfiles/default/Makefile
|
|
|
|
instfiles/init.d/Makefile
|
|
|
|
instfiles/Makefile
|
|
|
|
instfiles/pam.d/Makefile
|
|
|
|
instfiles/pulse/Makefile
|
|
|
|
instfiles/rc.d/Makefile
|
|
|
|
keygen/Makefile
|
|
|
|
libxrdp/Makefile
|
|
|
|
Makefile
|
|
|
|
mc/Makefile
|
|
|
|
neutrinordp/Makefile
|
|
|
|
pkgconfig/Makefile
|
|
|
|
pkgconfig/xrdp.pc
|
2016-11-18 03:04:35 +03:00
|
|
|
pkgconfig/xrdp-uninstalled.pc
|
2016-11-18 03:35:33 +03:00
|
|
|
rdp/Makefile
|
|
|
|
sesman/chansrv/Makefile
|
|
|
|
sesman/libscp/Makefile
|
|
|
|
sesman/Makefile
|
|
|
|
sesman/sessvc/Makefile
|
|
|
|
sesman/tools/Makefile
|
|
|
|
vnc/Makefile
|
|
|
|
xrdpapi/Makefile
|
|
|
|
xrdp/Makefile
|
|
|
|
xrdpvr/Makefile
|
|
|
|
xup/Makefile
|
2016-11-17 22:57:10 +03:00
|
|
|
])
|
2008-08-09 12:35:05 +04:00
|
|
|
|
2016-11-18 03:35:33 +03:00
|
|
|
AC_OUTPUT
|