svn commit: r424835 - head/security/p5-Crypt-Curve25519

Mathieu Arnold mat at FreeBSD.org
Fri Oct 28 13:09:21 UTC 2016


Author: mat
Date: Fri Oct 28 13:09:20 2016
New Revision: 424835
URL: https://svnweb.freebsd.org/changeset/ports/424835

Log:
  Mark JOBS_UNSAFE, it tries to use .a files before creating them.
  
  cc  -shared  -L/usr/local/lib/perl5/5.20/mach/CORE -lperl -L/usr/local/lib -fstack-protector Curve25519.o  -o blib/arch/auto/Crypt/Curve25519/Curve25519.so curve25519-donna-master/curve25519-donna-c64.a
  curve25519-donna-master/curve25519-donna-c64.a: could not read symbols: Archive has no index; run ranlib to add one
  *** [blib/arch/auto/Crypt/Curve25519/Curve25519.so] Error code 1
  ar cr curve25519-donna-c64.a curve25519-donna-c64.o
  : curve25519-donna-c64.a
  
  Sponsored by:	Absolight

Modified:
  head/security/p5-Crypt-Curve25519/Makefile   (contents, props changed)

Modified: head/security/p5-Crypt-Curve25519/Makefile
==============================================================================
--- head/security/p5-Crypt-Curve25519/Makefile	Fri Oct 28 13:08:58 2016	(r424834)
+++ head/security/p5-Crypt-Curve25519/Makefile	Fri Oct 28 13:09:20 2016	(r424835)
@@ -18,6 +18,8 @@ USES=		perl5
 USE_OPENSSL=	yes
 USE_PERL5=	configure
 
+MAKE_JOBS_UNSAFE=	yes
+
 post-install:
 	${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Crypt/Curve25519/Curve25519.so
 


More information about the svn-ports-all mailing list