2016-08-09 06:02:10 +03:00
|
|
|
if XRDP_PIXMAN
|
2016-08-12 22:16:14 +03:00
|
|
|
PIXMAN_SOURCES =
|
2016-08-09 06:02:10 +03:00
|
|
|
else
|
2016-08-12 22:16:14 +03:00
|
|
|
PIXMAN_SOURCES = pixman-region16.c pixman-region.h
|
2016-08-09 06:02:10 +03:00
|
|
|
endif
|
|
|
|
|
2016-08-12 22:16:14 +03:00
|
|
|
EXTRA_DIST = pixman-region.c
|
|
|
|
|
2016-11-07 09:36:13 +03:00
|
|
|
include_HEADERS = \
|
2019-12-19 12:55:38 +03:00
|
|
|
ms-erref.h \
|
|
|
|
ms-fscc.h \
|
|
|
|
ms-rdpbcgr.h \
|
|
|
|
ms-rdpefs.h \
|
|
|
|
ms-rdpegdi.h \
|
|
|
|
ms-rdpele.h \
|
|
|
|
ms-rdperp.h \
|
|
|
|
ms-smb2.h \
|
2016-11-07 09:36:13 +03:00
|
|
|
xrdp_client_info.h \
|
|
|
|
xrdp_constants.h \
|
2017-03-18 20:15:50 +03:00
|
|
|
xrdp_rail.h \
|
|
|
|
xrdp_sockets.h
|
2016-11-07 09:36:13 +03:00
|
|
|
|
2016-01-30 09:45:00 +03:00
|
|
|
AM_CPPFLAGS = \
|
2009-05-19 08:23:49 +04:00
|
|
|
-DXRDP_CFG_PATH=\"${sysconfdir}/xrdp\" \
|
|
|
|
-DXRDP_SBIN_PATH=\"${sbindir}\" \
|
|
|
|
-DXRDP_SHARE_PATH=\"${datadir}/xrdp\" \
|
2012-06-11 08:50:57 +04:00
|
|
|
-DXRDP_PID_PATH=\"${localstatedir}/run\" \
|
2017-03-15 07:45:50 +03:00
|
|
|
-DXRDP_LOG_PATH=\"${localstatedir}/log\" \
|
|
|
|
-DXRDP_SOCKET_PATH=\"${socketdir}\"
|
2009-05-19 08:23:49 +04:00
|
|
|
|
2017-01-04 15:54:55 +03:00
|
|
|
if XRDP_DEBUG
|
|
|
|
AM_CPPFLAGS += -DXRDP_DEBUG
|
|
|
|
endif
|
|
|
|
|
2016-11-30 04:00:09 +03:00
|
|
|
AM_CFLAGS = $(OPENSSL_CFLAGS)
|
|
|
|
|
2016-02-10 21:24:09 +03:00
|
|
|
module_LTLIBRARIES = \
|
2008-08-12 09:46:40 +04:00
|
|
|
libcommon.la
|
2008-08-03 11:48:32 +04:00
|
|
|
|
2008-08-12 09:46:40 +04:00
|
|
|
libcommon_la_SOURCES = \
|
2016-02-22 08:49:04 +03:00
|
|
|
arch.h \
|
2017-07-13 11:22:04 +03:00
|
|
|
base64.h \
|
|
|
|
base64.c \
|
2016-02-22 08:49:04 +03:00
|
|
|
defines.h \
|
|
|
|
fifo.c \
|
|
|
|
fifo.h \
|
2008-08-03 11:48:32 +04:00
|
|
|
file.c \
|
2016-02-22 08:49:04 +03:00
|
|
|
file.h \
|
2008-08-03 11:48:32 +04:00
|
|
|
list.c \
|
2016-02-22 08:49:04 +03:00
|
|
|
list.h \
|
2014-03-16 08:59:16 +04:00
|
|
|
list16.c \
|
2016-02-22 08:49:04 +03:00
|
|
|
list16.h \
|
2008-08-03 11:48:32 +04:00
|
|
|
log.c \
|
2016-02-22 08:49:04 +03:00
|
|
|
log.h \
|
2008-08-03 11:48:32 +04:00
|
|
|
os_calls.c \
|
2016-02-22 08:49:04 +03:00
|
|
|
os_calls.h \
|
|
|
|
parse.h \
|
|
|
|
rail.h \
|
2008-08-03 11:48:32 +04:00
|
|
|
ssl_calls.c \
|
2016-02-22 08:49:04 +03:00
|
|
|
ssl_calls.h \
|
2020-08-22 20:05:24 +03:00
|
|
|
string_calls.c \
|
|
|
|
string_calls.h \
|
2008-09-01 02:52:22 +04:00
|
|
|
thread_calls.c \
|
2016-02-22 08:49:04 +03:00
|
|
|
thread_calls.h \
|
|
|
|
trans.c \
|
|
|
|
trans.h \
|
2016-08-12 22:16:14 +03:00
|
|
|
$(PIXMAN_SOURCES)
|
2008-08-06 09:06:03 +04:00
|
|
|
|
2008-08-12 09:46:40 +04:00
|
|
|
libcommon_la_LIBADD = \
|
2016-11-30 03:25:37 +03:00
|
|
|
-lpthread \
|
2016-11-30 04:00:09 +03:00
|
|
|
$(OPENSSL_LIBS) \
|
2016-11-30 03:25:37 +03:00
|
|
|
$(DLOPEN_LIBS)
|