Date: Sat, 22 Aug 2020 08:33:27 +0000 (UTC) From: Niclas Zeising <zeising@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r545747 - branches/2020Q3/security/gnupg1 Message-ID: <202008220833.07M8XRKl078439@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202008220833.07M8XRKl078439>