svn commit: r493232 - head/security/bearssl

Mark Linimon linimon at FreeBSD.org
Mon Feb 18 01:33:59 UTC 2019


Author: linimon
Date: Mon Feb 18 01:33:57 2019
New Revision: 493232
URL: https://svnweb.freebsd.org/changeset/ports/493232

Log:
  This port doesn't build for submitter with threaded make (on powerpc64).
  Add MAKE_JOBS_UNSAFE=yes to fix build.
  
  While here, pet portlint.
  
  PR:		235528
  Submitted by:	Piotr Kubaj
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/security/bearssl/Makefile

Modified: head/security/bearssl/Makefile
==============================================================================
--- head/security/bearssl/Makefile	Mon Feb 18 01:32:39 2019	(r493231)
+++ head/security/bearssl/Makefile	Mon Feb 18 01:33:57 2019	(r493232)
@@ -10,10 +10,12 @@ MAINTAINER=	bapt at FreeBSD.org
 COMMENT=	Implementation of TLS/SSL in C
 
 LICENSE=	MIT
+
 LIBBEARSSL=	libbearssl.so.0
 
 MAKE_ARGS=	CC="${CC}" LD="${CC}" CFLAGS="${CFLAGS} -fPIC" LDDLL="${CC}" LDDLLFLAGS="-shared -Wl,-soname=${LIBBEARSSL}" \
 		BEARSSLDLL=${LIBBEARSSL}
+MAKE_JOBS_UNSAFE=	yes
 
 do-install:
 	${INSTALL_PROGRAM} ${WRKSRC}/build/brssl ${STAGEDIR}${PREFIX}/bin/


More information about the svn-ports-all mailing list