svn commit: r550892 - head/net/tightvnc

Yuri Victorovich yuri at FreeBSD.org
Fri Oct 2 03:10:51 UTC 2020


Author: yuri
Date: Fri Oct  2 03:10:50 2020
New Revision: 550892
URL: https://svnweb.freebsd.org/changeset/ports/550892

Log:
  net/tightvnc: Fix build on 13 by adding -fcommon
  
  Reported by:	breakage of 13 build
  Approved by:	portmgr (unbreak)

Modified:
  head/net/tightvnc/Makefile

Modified: head/net/tightvnc/Makefile
==============================================================================
--- head/net/tightvnc/Makefile	Fri Oct  2 03:04:07 2020	(r550891)
+++ head/net/tightvnc/Makefile	Fri Oct  2 03:10:50 2020	(r550892)
@@ -15,12 +15,15 @@ LICENSE=	GPLv2
 LICENSE_FILE=	${WRKSRC}/LICENCE.TXT
 
 BROKEN_aarch64=	Fails to build: invokes x86 asm
+
 USES=		cpe imake jpeg shebangfix perl5 tar:bzip2 xorg
 USE_XORG=	ice sm x11 xaw xext xmu xt xpm
 
 RUN_DEPENDS=	showrgb:x11/rgb \
 		xauth:x11/xauth \
 		xorg-fonts>=7.2:x11-fonts/xorg-fonts
+
+CFLAGS+=	-fcommon # for build with clang-11, see https://sourceforge.net/p/vnc-tight/bugs/1523/
 
 MAKE_JOBS_UNSAFE=	yes
 CONFLICTS=	tigervnc-*


More information about the svn-ports-all mailing list