diff options
author | Pavel Roskin <plroskin@gmail.com> | 2016-12-11 23:09:15 -0800 |
---|---|---|
committer | Pavel Roskin <plroskin@gmail.com> | 2016-12-15 22:37:20 -0800 |
commit | e65aa594e8e76b8ecb9f31b7204d5fc96818425a (patch) | |
tree | 505be1822f6d101992a0db23c70da58c9156857b /xrdp | |
parent | 870f028692c0267069ebb4cc616faccd739f843a (diff) | |
download | xrdp-proprietary-e65aa594e8e76b8ecb9f31b7204d5fc96818425a.tar.gz xrdp-proprietary-e65aa594e8e76b8ecb9f31b7204d5fc96818425a.zip |
Make librfxcodec a subpackage
Since libpainter is going to become a subpackage, we can make librfxcodec
a subpackage as well.
With this change, librfxcodec is configured, built and linked to xrdp
automatically if enabled by "--enable-rfxcodec"
librfxcodec is packaged by "make dist" regardless of "--enable-rfxcodec"
librfxcodec/confgure is run unconditionally, it's needed for "make dist"
to work. But librfxcodec is only compiled if enabled.
Diffstat (limited to 'xrdp')
-rw-r--r-- | xrdp/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xrdp/Makefile.am b/xrdp/Makefile.am index 400a4285..0f2e6f65 100644 --- a/xrdp/Makefile.am +++ b/xrdp/Makefile.am @@ -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 |