svn commit: r545747 - branches/2020Q3/security/gnupg1

Niclas Zeising zeising at FreeBSD.org
Sat Aug 22 08:33:28 UTC 2020


Author: zeising
Date: Sat Aug 22 08:33:27 2020
New Revision: 545747
URL: https://svnweb.freebsd.org/changeset/ports/545747

Log:
  MFH: r545570
  
  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.
  
  Approved by:	ports-secteam (joenum, implicit, -fno-common fixes)

Modified:
  branches/2020Q3/security/gnupg1/Makefile
Directory Properties:
  branches/2020Q3/   (props changed)

Modified: branches/2020Q3/security/gnupg1/Makefile
==============================================================================
--- branches/2020Q3/security/gnupg1/Makefile	Sat Aug 22 08:32:20 2020	(r545746)
+++ branches/2020Q3/security/gnupg1/Makefile	Sat Aug 22 08:33:27 2020	(r545747)
@@ -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


More information about the svn-ports-all mailing list