mirror of https://github.com/neutrinolabs/xrdp
Merge pull request #539 from proski/rxfcodec
Make librfxcodec a subpackage
This commit is contained in:
commit
d706f9dba4
|
@ -16,6 +16,12 @@ else
|
|||
XRDPVRDIR =
|
||||
endif
|
||||
|
||||
if XRDP_RFXCODEC
|
||||
RFXCODECDIR = librfxcodec
|
||||
else
|
||||
RFXCODECDIR =
|
||||
endif
|
||||
|
||||
SUBDIRS = \
|
||||
common \
|
||||
vnc \
|
||||
|
@ -24,6 +30,7 @@ SUBDIRS = \
|
|||
mc \
|
||||
$(NEUTRINORDPDIR) \
|
||||
libxrdp \
|
||||
$(RFXCODECDIR) \
|
||||
xrdp \
|
||||
sesman \
|
||||
keygen \
|
||||
|
|
|
@ -10,6 +10,8 @@ AC_C_CONST
|
|||
AC_PROG_LIBTOOL
|
||||
PKG_PROG_PKG_CONFIG
|
||||
|
||||
AC_CONFIG_SUBDIRS([librfxcodec])
|
||||
|
||||
# Use silent rules by default if supported by Automake
|
||||
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@ endif
|
|||
if XRDP_RFXCODEC
|
||||
AM_CPPFLAGS += -DXRDP_RFXCODEC
|
||||
AM_CPPFLAGS += -I$(top_srcdir)/librfxcodec/include
|
||||
XRDP_EXTRA_LIBS += $(top_srcdir)/librfxcodec/src/.libs/librfxencode.a
|
||||
XRDP_EXTRA_LIBS += $(top_builddir)/librfxcodec/src/.libs/librfxencode.a
|
||||
endif
|
||||
|
||||
if XRDP_PIXMAN
|
||||
|
|
Loading…
Reference in New Issue