diff options
author | mat <mat@FreeBSD.org> | 2016-06-16 21:23:13 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2016-06-16 21:23:13 +0800 |
commit | a4af234af8f51d40eb998ed6d368ccea401a3302 (patch) | |
tree | f5237f7173e7b9a5cbac11e6a57f460d84e79314 /security/p5-openxpki | |
parent | 56be8553fe553c4526347278fbdd90ec4156eb14 (diff) | |
download | freebsd-ports-gnome-a4af234af8f51d40eb998ed6d368ccea401a3302.tar.gz freebsd-ports-gnome-a4af234af8f51d40eb998ed6d368ccea401a3302.tar.zst freebsd-ports-gnome-a4af234af8f51d40eb998ed6d368ccea401a3302.zip |
Fix usage of WITH_OPENSSL_BASE, WITH_OPENSSL_PORT and OPENSSL_PORT.
WITH_OPENSSL_* can't be set after bsd.port.pre.mk.
Fold all other usage into using SSL_DEFAULT == foo
PR: 210149
Submitted by: mat
Exp-run by: antoine
Sponsored by: The FreeBSD Foundation, Absolight
Differential Revision: https://reviews.freebsd.org/D6577
Diffstat (limited to 'security/p5-openxpki')
-rw-r--r-- | security/p5-openxpki/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/p5-openxpki/Makefile b/security/p5-openxpki/Makefile index 6d48f893c9cc..973ff2c74bc2 100644 --- a/security/p5-openxpki/Makefile +++ b/security/p5-openxpki/Makefile @@ -114,7 +114,7 @@ post-stage: .include <bsd.port.pre.mk> -.if defined(WITH_OPENSSL_PORT) && defined(OPENSSL_PORT) && ${OPENSSL_PORT} == security/libressl +.if ${SSL_DEFAULT} == libressl IGNORE= this version of OpenXPKI is not fully functional with LibreSSL library, use OpenSSL instead .endif |