2016-12-18 09:43:30 +03:00
|
|
|
EXTRA_DIST = \
|
|
|
|
Doxyfile
|
|
|
|
|
2016-01-30 09:45:00 +03:00
|
|
|
AM_CPPFLAGS = \
|
2017-07-19 09:41:32 +03:00
|
|
|
-DXRDP_SYSCONF_PATH=\"${sysconfdir}\" \
|
2009-05-19 08:23:49 +04:00
|
|
|
-DXRDP_CFG_PATH=\"${sysconfdir}/xrdp\" \
|
|
|
|
-DXRDP_SBIN_PATH=\"${sbindir}\" \
|
2023-03-09 13:35:44 +03:00
|
|
|
-DXRDP_LIBEXEC_PATH=\"${libexecdir}/xrdp\" \
|
2009-05-19 08:23:49 +04:00
|
|
|
-DXRDP_SHARE_PATH=\"${datadir}/xrdp\" \
|
2016-01-30 09:45:00 +03:00
|
|
|
-DXRDP_PID_PATH=\"${localstatedir}/run\" \
|
2017-03-15 07:45:50 +03:00
|
|
|
-DXRDP_SOCKET_PATH=\"${socketdir}\" \
|
2023-02-21 04:50:46 +03:00
|
|
|
-DXRDP_PAMCONF_PATH=\"${pamconfdir}\" \
|
2022-03-19 14:29:28 +03:00
|
|
|
-DSESMAN_RUNTIME_PATH=\"${sesmanruntimedir}\" \
|
2008-08-03 11:48:32 +04:00
|
|
|
-I$(top_srcdir)/common \
|
2022-02-14 12:16:42 +03:00
|
|
|
-I$(top_srcdir)/libipm
|
2008-08-03 11:48:32 +04:00
|
|
|
|
2008-08-12 11:15:16 +04:00
|
|
|
sbin_PROGRAMS = \
|
2008-11-25 07:00:53 +03:00
|
|
|
xrdp-sesman
|
2008-08-03 11:48:32 +04:00
|
|
|
|
|
|
|
xrdp_sesman_SOURCES = \
|
2016-02-22 08:49:04 +03:00
|
|
|
access.c \
|
|
|
|
access.h \
|
|
|
|
auth.h \
|
|
|
|
config.c \
|
|
|
|
config.h \
|
|
|
|
env.c \
|
|
|
|
env.h \
|
2022-03-24 17:59:24 +03:00
|
|
|
lock_uds.c \
|
|
|
|
lock_uds.h \
|
2022-02-14 12:16:42 +03:00
|
|
|
scp_process.c \
|
|
|
|
scp_process.h \
|
2008-08-03 11:48:32 +04:00
|
|
|
sesman.c \
|
2016-02-22 08:49:04 +03:00
|
|
|
sesman.h \
|
2008-08-03 11:48:32 +04:00
|
|
|
session.c \
|
2016-02-22 08:49:04 +03:00
|
|
|
session.h \
|
2023-03-09 18:40:56 +03:00
|
|
|
session_list.c \
|
|
|
|
session_list.h \
|
2008-08-03 11:48:32 +04:00
|
|
|
sig.c \
|
2016-02-22 08:49:04 +03:00
|
|
|
sig.h \
|
2016-12-15 20:06:35 +03:00
|
|
|
xauth.c \
|
2022-11-20 05:43:00 +03:00
|
|
|
xauth.h \
|
|
|
|
xwait.c \
|
|
|
|
xwait.h
|
2022-12-02 20:02:46 +03:00
|
|
|
|
|
|
|
# Possible authentication modules
|
|
|
|
# See https://www.gnu.org/software/automake/manual/html_node/Conditional-Sources.html
|
|
|
|
EXTRA_xrdp_sesman_SOURCES = \
|
|
|
|
verify_user.c \
|
|
|
|
verify_user_bsd.c \
|
|
|
|
verify_user_kerberos.c \
|
|
|
|
verify_user_pam.c \
|
|
|
|
verify_user_pam_userpass.c
|
|
|
|
|
|
|
|
# Make sure the right authentication module is pulled in
|
|
|
|
xrdp_sesman_DEPENDENCIES = $(AUTHMOD_OBJ)
|
2008-08-03 11:48:32 +04:00
|
|
|
|
2022-12-02 20:02:46 +03:00
|
|
|
# Make sure the right authentication module is linked with
|
2008-08-03 11:48:32 +04:00
|
|
|
xrdp_sesman_LDADD = \
|
2022-12-02 20:02:46 +03:00
|
|
|
$(AUTHMOD_OBJ) \
|
2022-02-14 12:16:42 +03:00
|
|
|
$(top_builddir)/libipm/libipm.la \
|
2012-07-14 03:18:02 +04:00
|
|
|
$(top_builddir)/common/libcommon.la \
|
2022-12-02 20:02:46 +03:00
|
|
|
$(AUTHMOD_LIB) \
|
2011-07-06 08:50:09 +04:00
|
|
|
-lpthread
|
2008-08-03 11:48:32 +04:00
|
|
|
|
2008-08-12 11:15:16 +04:00
|
|
|
sesmansysconfdir=$(sysconfdir)/xrdp
|
|
|
|
|
2018-02-08 21:30:00 +03:00
|
|
|
SUBST_VARS = sed \
|
|
|
|
-e 's|@sesmansysconfdir[@]|$(sesmansysconfdir)|g'
|
|
|
|
|
|
|
|
subst_verbose = $(subst_verbose_@AM_V@)
|
|
|
|
subst_verbose_ = $(subst_verbose_@AM_DEFAULT_V@)
|
|
|
|
subst_verbose_0 = @echo " SUBST $@";
|
|
|
|
|
|
|
|
SUFFIXES = .in
|
|
|
|
.in:
|
|
|
|
$(subst_verbose)$(SUBST_VARS) $< > $@
|
|
|
|
|
2016-02-23 09:11:57 +03:00
|
|
|
dist_sesmansysconf_DATA = \
|
2016-02-23 10:13:16 +03:00
|
|
|
sesman.ini
|
|
|
|
|
|
|
|
dist_sesmansysconf_SCRIPTS = \
|
2017-05-15 09:02:06 +03:00
|
|
|
startwm.sh \
|
|
|
|
reconnectwm.sh
|
2008-08-03 11:48:32 +04:00
|
|
|
|
2008-08-10 22:01:51 +04:00
|
|
|
SUBDIRS = \
|
2008-11-25 07:00:53 +03:00
|
|
|
tools \
|
2009-04-19 21:16:46 +04:00
|
|
|
chansrv
|