diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2020-01-08 19:36:47 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2020-01-08 19:36:47 +0000 |
commit | 2398e7fc51b9cc859b386a27a75bbc0e426e74c1 (patch) | |
tree | b19d343babe3d78b6a87f2db39fd7aaffe340ecf /net/xrdp | |
parent | www/firefox-esr: update to 68.4.1 (diff) |
net/xrdp: fix build on GCC architectures
C11 compiler is necessary:
irp.h:33: error: redefinition of typedef 'XFUSE_INFO'
chansrv_fuse.h:47: error: previous declaration of 'XFUSE_INFO' was here
MFH: 2020Q1 (fix build blanket)
Notes
Notes:
svn path=/head/; revision=522457
Diffstat (limited to 'net/xrdp')
-rw-r--r-- | net/xrdp/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/xrdp/Makefile b/net/xrdp/Makefile index 3868c3317169..516862edfdb9 100644 --- a/net/xrdp/Makefile +++ b/net/xrdp/Makefile @@ -21,7 +21,8 @@ RUN_DEPENDS= xterm:x11/xterm \ ${LOCALBASE}/lib/xorg/modules/libxorgxrdp.so:x11-drivers/xorgxrdp \ ${LOCALBASE}/lib/pulse-13.0/modules/module-xrdp-sink.so:audio/pulseaudio-module-xrdp -USES= autoreconf:build jpeg localbase libtool pkgconfig ssl xorg +USES= autoreconf:build compiler:c11 jpeg localbase libtool pkgconfig \ + ssl xorg USE_XORG= ice pixman sm x11 xfixes xrandr USE_LDCONFIG= ${PREFIX}/lib/xrdp USE_GITHUB= yes |