svn commit: r545570 - head/security/gnupg1

Niclas Zeising zeising at FreeBSD.org
Thu Aug 20 23:10:01 UTC 2020


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


More information about the svn-ports-all mailing list