Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 20 Aug 2020 23:10:01 +0000 (UTC)
From:      Niclas Zeising <zeising@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r545570 - head/security/gnupg1
Message-ID:  <202008202310.07KNA1m5027901@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: zeising
Date: Thu Aug 20 23:10:00 2020
New Revision: 545570
URL: https://svnweb.freebsd.org/changeset/ports/545570

Log:
  security/gnupg1: Build with -fcommon
  
  With llvm 11, builds are using -fno-common by default.
  I've tried to fix gnupg1 to build with this, but it is qyite hard and
  requires a lot of patches.  In the meantime, upstream code has changed
  significantly, and gnupg1 is old, so just switch it to use -fcommon instead,
  to make it build.
  
  MFH:		2020Q3 (implicit, -fno-common fixes, ok by joenum)

Modified:
  head/security/gnupg1/Makefile

Modified: head/security/gnupg1/Makefile
==============================================================================
--- head/security/gnupg1/Makefile	Thu Aug 20 23:03:21 2020	(r545569)
+++ head/security/gnupg1/Makefile	Thu Aug 20 23:10:00 2020	(r545570)
@@ -19,6 +19,7 @@ USES=		charsetfix compiler cpe gmake readline tar:bzip
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--enable-camellia \
 		--enable-noexecstack
+CFLAGS+=	-fcommon
 
 INFO=		gnupg1
 DOCSDIR=	${PREFIX}/share/doc/gnupg1



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202008202310.07KNA1m5027901>