diff options
author | marino <marino@FreeBSD.org> | 2016-09-14 03:10:31 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2016-09-14 03:10:31 +0800 |
commit | b964a4977d986adb5f4a4949b5b7bae3103f63cb (patch) | |
tree | 7e484d4f116196ec1a84698de417e665557eaaea /net-mgmt | |
parent | 2d3d5e3ec2ae2fea54e429e0988789ddf771442f (diff) | |
download | freebsd-ports-graphics-b964a4977d986adb5f4a4949b5b7bae3103f63cb.tar.gz freebsd-ports-graphics-b964a4977d986adb5f4a4949b5b7bae3103f63cb.tar.zst freebsd-ports-graphics-b964a4977d986adb5f4a4949b5b7bae3103f63cb.zip |
net-mgmt/nsca-ng(-client): IGNORE FreeBSD 9 base openSSL
I think the original makefile was starting that the FreeBSD 9 base OpenSSL
isn't good enough. My previous commit lost that information, so put the
equivalent check back again.
Diffstat (limited to 'net-mgmt')
-rw-r--r-- | net-mgmt/nsca-ng/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net-mgmt/nsca-ng/Makefile b/net-mgmt/nsca-ng/Makefile index 807549e7616..e3b0701db1a 100644 --- a/net-mgmt/nsca-ng/Makefile +++ b/net-mgmt/nsca-ng/Makefile @@ -35,6 +35,10 @@ PORTDOCS= NEWS COPYING README PROTOCOL TODO .include <bsd.port.pre.mk> +.if ${SSL_DEFAULT} == base +IGNORE_FreeBSD_9= Requires newer OpenSSL (set SSL_DEFAULT=openssl) +.endif + .if ${SSL_DEFAULT:Mlibressl*} IGNORE= Requires PSK which is unsupported by the selected LibreSSL .endif |