Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 6 Nov 2020 09:19:33 +0000 (UTC)
From:      Mateusz Piotrowski <0mp@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r554175 - head/security/seahorse
Message-ID:  <202011060919.0A69JXWd010643@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



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