diff options
author | marino <marino@FreeBSD.org> | 2016-09-13 22:24:45 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2016-09-13 22:24:45 +0800 |
commit | f6452e7a678dffcbd9727da0bf3ce76947eac9c6 (patch) | |
tree | 90410245fc8367c07a855bf7388cba1f555a6355 | |
parent | 11d282aaaabf56f768e724290435d207399464fc (diff) | |
download | freebsd-ports-gnome-f6452e7a678dffcbd9727da0bf3ce76947eac9c6.tar.gz freebsd-ports-gnome-f6452e7a678dffcbd9727da0bf3ce76947eac9c6.tar.zst freebsd-ports-gnome-f6452e7a678dffcbd9727da0bf3ce76947eac9c6.zip |
LibreSSL checks: Check for libressl-devel option too
Approved by: SSL blanket
-rw-r--r-- | ftp/curl/Makefile | 2 | ||||
-rw-r--r-- | security/softhsm2/Makefile | 2 | ||||
-rw-r--r-- | security/stunnel/Makefile | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/ftp/curl/Makefile b/ftp/curl/Makefile index 63222245ab48..ae702a8beb9f 100644 --- a/ftp/curl/Makefile +++ b/ftp/curl/Makefile @@ -153,7 +153,7 @@ IGNORE= only supports LDAPS with SSL IGNORE= GSSAPI_BASE is not compatible with OpenSSL from ports. Use other GSSAPI options or OpenSSL from base system .endif -.if ${SSL_DEFAULT} == libressl +.if ${SSL_DEFAULT:Mlibressl*} .if ${PORT_OPTIONS:MGSSAPI_BASE} && ${PORT_OPTIONS:MOPENSSL} IGNORE= GSSAPI_BASE is not compatible with LibreSSL. Use other GSSAPI options .endif diff --git a/security/softhsm2/Makefile b/security/softhsm2/Makefile index 3bf3a486159f..b688e27f970e 100644 --- a/security/softhsm2/Makefile +++ b/security/softhsm2/Makefile @@ -40,7 +40,7 @@ CRYP_OPEN_CONFIGURE_ON= --with-crypto-backend=openssl .include <bsd.port.pre.mk> -.if ${SSL_DEFAULT} == libressl +.if ${SSL_DEFAULT:Mlibressl*} CONFIGURE_ARGS+= --disable-gost .endif diff --git a/security/stunnel/Makefile b/security/stunnel/Makefile index 451ab313cfd3..dd6411dffaae 100644 --- a/security/stunnel/Makefile +++ b/security/stunnel/Makefile @@ -76,11 +76,11 @@ LDFLAGS+= -lpthread .include <bsd.port.pre.mk> -.if ${PORT_OPTIONS:MFIPS} && ${SSL_DEFAULT} == libressl +.if ${PORT_OPTIONS:MFIPS} && ${SSL_DEFAULT:Mlibressl*} IGNORE= LibreSSL does not support FIPS standard .endif -.if ${SSL_DEFAULT} == libressl +.if ${SSL_DEFAULT:Mlibressl*} NO_PACKAGE= The stunnel license restricts distribution when linked to non-OpenSSL non-base SSL-libraries .endif |