svn commit: r554175 - head/security/seahorse

Mateusz Piotrowski 0mp at FreeBSD.org
Fri Nov 6 09:19:33 UTC 2020


Author: 0mp
Date: Fri Nov  6 09:19:33 2020
New Revision: 554175
URL: https://svnweb.freebsd.org/changeset/ports/554175

Log:
  Use -fuse-lld=lld to avoid link errors using old ld(1) on 11.x
  
  PR:		249974
  Submitted by:	John Hein <jcfyecrayz__liamekaens_com>
  Approved by:	portmgr blanket
  MFH:		2020Q4

Modified:
  head/security/seahorse/Makefile

Modified: head/security/seahorse/Makefile
==============================================================================
--- head/security/seahorse/Makefile	Fri Nov  6 08:29:25 2020	(r554174)
+++ head/security/seahorse/Makefile	Fri Nov  6 09:19:33 2020	(r554175)
@@ -42,6 +42,10 @@ MESON_ARGS=	-Dcheck-compatible-gpg=false \
 		-Dpgp-support=true \
 		-Dpkcs11-support=true
 
+.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1200000
+LDFLAGS+=	-fuse-ld=lld
+.endif
+
 BINARY_ALIAS=	python3=${PYTHON_CMD}
 PORTSCOUT=	limitw:1,even
 


More information about the svn-ports-all mailing list