diff options
author | Cy Schubert <cy@FreeBSD.org> | 2022-06-16 19:41:36 +0000 |
---|---|---|
committer | Cy Schubert <cy@FreeBSD.org> | 2022-06-16 19:49:54 +0000 |
commit | 5fce6afe2a3016cb8893bf52344410eb4e13278b (patch) | |
tree | c546b695c05372bef3558969337c5ba8e0f4dabf | |
parent | 8f009815d35cfb5de7ae11d543b9bfd8426f2821 (diff) |
security/krb5-120: MIT KRB5 1.20 does not support LibreSSL
MIT KRB5 does not support LibreSSL and requires a function only
found in OpenSSL. Therefore mark libressl and libressl-devel IGNORE.
pkinit_crypto_openssl.c:334:14: error: implicit declaration of function
'EVP_PKEY_param_check' is invalid in C99
[-Werror,-Wimplicit-function-declaration]
result = EVP_PKEY_param_check(ctx);
EVP_PKEY_param_check(), an OpenSSL function, is not supported by LibreSSL.
-rw-r--r-- | security/krb5-120/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/security/krb5-120/Makefile b/security/krb5-120/Makefile index 16e0331e4290..aa6dd9327db5 100644 --- a/security/krb5-120/Makefile +++ b/security/krb5-120/Makefile @@ -19,6 +19,8 @@ LICENSE= MIT CONFLICTS= heimdal krb5 krb5-* CONFLICTS_BUILD= boringssl +IGNORE_SSL= libressl libressl-devel + KERBEROSV_URL= http://web.mit.edu/kerberos/ USES= compiler:c++11-lang cpe gmake gettext-runtime \ gssapi:bootstrap,mit libtool:build localbase \ |