diff options
author | Pavel Roskin <plroskin@gmail.com> | 2016-12-04 12:01:35 -0800 |
---|---|---|
committer | Pavel Roskin <plroskin@gmail.com> | 2016-12-04 19:38:45 -0800 |
commit | c759a1a645086be7360c9c835bbecf780001ee20 (patch) | |
tree | 6edd12cf4ed0a625873b073d97938eb1dd716cb4 /xrdp/Makefile.am | |
parent | 42d370fcddcbf131618b2a9b741203952a3242db (diff) | |
download | xrdp-proprietary-c759a1a645086be7360c9c835bbecf780001ee20.tar.gz xrdp-proprietary-c759a1a645086be7360c9c835bbecf780001ee20.zip |
Make configure show it's looking for "pixman", not "xrdp_pixman"
The pixman library in not part of xrdp. If users see that "xrdp_pixman"
is not found, they might assume it is some xrdp specific library.
The Automake conditional is still XRDP_PIXMAN, but the pkg-config
variables become PIXMAN_LIBS and PIXMAN_CFLAGS.
Diffstat (limited to 'xrdp/Makefile.am')
-rw-r--r-- | xrdp/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xrdp/Makefile.am b/xrdp/Makefile.am index e24f22e2..400a4285 100644 --- a/xrdp/Makefile.am +++ b/xrdp/Makefile.am @@ -24,8 +24,8 @@ endif if XRDP_PIXMAN AM_CPPFLAGS += -DXRDP_PIXMAN -AM_CPPFLAGS += $(XRDP_PIXMAN_CFLAGS) -XRDP_EXTRA_LIBS += $(XRDP_PIXMAN_LIBS) +AM_CPPFLAGS += $(PIXMAN_CFLAGS) +XRDP_EXTRA_LIBS += $(PIXMAN_LIBS) endif sbin_PROGRAMS = \ |