Date: Tue, 13 Dec 2016 01:35:31 +0000 (UTC) From: John Marino <marino@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r428458 - head/security/p5-Crypt-SMIME Message-ID: <201612130135.uBD1ZVjm041998@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: marino Date: Tue Dec 13 01:35:31 2016 New Revision: 428458 URL: https://svnweb.freebsd.org/changeset/ports/428458 Log: security/p5-Crypt-SMIME: IGNORE with LibreSSL This requires CMS (Cryptographic Message Syntax) which is still unsupported by LibreSSL. Approved by: SSL blanket Modified: head/security/p5-Crypt-SMIME/Makefile Modified: head/security/p5-Crypt-SMIME/Makefile ============================================================================== --- head/security/p5-Crypt-SMIME/Makefile Tue Dec 13 00:30:41 2016 (r428457) +++ head/security/p5-Crypt-SMIME/Makefile Tue Dec 13 01:35:31 2016 (r428458) @@ -29,8 +29,12 @@ post-install: .include <bsd.port.pre.mk> -.if ${OSVERSION} < 1000015 && ${SSL_DEFAULT:Mbase} +.if ${SSL_DEFAULT:Mlibressl*} +IGNORE= Required CMS is disabled on LibreSSL +.else +. if ${OSVERSION} < 1000015 && ${SSL_DEFAULT:Mbase} IGNORE= Need a more recent version of OpenSSL. +. endif .endif .include <bsd.port.post.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201612130135.uBD1ZVjm041998>