svn commit: r522457 - head/net/xrdp

Piotr Kubaj pkubaj at FreeBSD.org
Wed Jan 8 19:36:47 UTC 2020


Author: pkubaj
Date: Wed Jan  8 19:36:47 2020
New Revision: 522457
URL: https://svnweb.freebsd.org/changeset/ports/522457

Log:
  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)

Modified:
  head/net/xrdp/Makefile

Modified: head/net/xrdp/Makefile
==============================================================================
--- head/net/xrdp/Makefile	Wed Jan  8 19:19:15 2020	(r522456)
+++ head/net/xrdp/Makefile	Wed Jan  8 19:36:47 2020	(r522457)
@@ -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


More information about the svn-ports-all mailing list