diff options
author | Muhammad Moinur Rahman <bofh@FreeBSD.org> | 2023-07-22 05:02:08 +0000 |
---|---|---|
committer | Muhammad Moinur Rahman <bofh@FreeBSD.org> | 2023-07-22 06:11:20 +0000 |
commit | cf7fe19fd550efa1c30953872c098bc3a164af7b (patch) | |
tree | 9eba8d5d68488604205b543ad737f787248c72b1 /net/asterisk16/Makefile | |
parent | 40dd71f82843dadc72d14860913989d10ba94d31 (diff) |
net/asterisk16: Mark IGNORESSL
This port do not have upstream support for OpenSSL 3 and later as it's
supposed toe expire on 2023-10-09 so mark IGNORE_SSL for OSVERSION
1400092 and cases where SSL_DEFAULT is openssl.
Sponsored by: The FreeBSD Foundation
Diffstat (limited to 'net/asterisk16/Makefile')
-rw-r--r-- | net/asterisk16/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/net/asterisk16/Makefile b/net/asterisk16/Makefile index 987d5c5488c6..a96453c2e9b9 100644 --- a/net/asterisk16/Makefile +++ b/net/asterisk16/Makefile @@ -194,6 +194,11 @@ CC= clang${LLVM_VERSION} CXX= clang++${LLVM_VERSION} .endif +.if ( ${OPSYS} == FreeBSD && ${OSVERSION} >= 1400092 && ${SSL_DEFAULT} == base ) || ${SSL_DEFAULT:Mopenssl3*} +IGNORE_SSL= base openssl30 openssl31 +IGNORE_SSL_REASON= Missing upstream support for OpenSSL 3.0.0 and later in this version +.endif + .include <bsd.port.pre.mk> .if empty(ICONV_LIB) |