diff options
author | orbea <orbea@riseup.net> | 2022-07-10 17:29:45 -0700 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-07-12 03:45:42 +0100 |
commit | c2eb9483cac80e3863c3d7f4a01872257f60edec (patch) | |
tree | f077b87a7e0895761b6b061612f75c78d0cfd686 /www-client/w3mmee | |
parent | net-voip/telepathy-salut: Remove libressl support (diff) | |
download | gentoo-c2eb9483cac80e3863c3d7f4a01872257f60edec.tar.gz gentoo-c2eb9483cac80e3863c3d7f4a01872257f60edec.tar.bz2 gentoo-c2eb9483cac80e3863c3d7f4a01872257f60edec.zip |
www-client/w3mmee: Remove libressl support
This removes outdated libressl checks from the openssl-1.1.patch which
are no longer required for the libressl overlay.
Signed-off-by: orbea <orbea@riseup.net>
Closes: https://github.com/gentoo/gentoo/pull/26339
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'www-client/w3mmee')
-rw-r--r-- | www-client/w3mmee/files/w3mmee-openssl-1.1.patch | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www-client/w3mmee/files/w3mmee-openssl-1.1.patch b/www-client/w3mmee/files/w3mmee-openssl-1.1.patch index 8d7087c93a24..7a2ef42b2bba 100644 --- a/www-client/w3mmee/files/w3mmee-openssl-1.1.patch +++ b/www-client/w3mmee/files/w3mmee-openssl-1.1.patch @@ -15,7 +15,7 @@ gn = sk_GENERAL_NAME_value(alt, i); if (gn->type == GEN_DNS) { -+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) ++#if OPENSSL_VERSION_NUMBER < 0x10100000L char *sn = ASN1_STRING_data(gn->d.ia5); +#else + char *sn = ASN1_STRING_get0_data(gn->d.ia5); @@ -64,7 +64,7 @@ X509_set_default_verify_paths(ssl_ctx->cert); -#else /* SSLEAY_VERSION_NUMBER >= 0x0800 */ +#else /* OPENSSL_VERSION_NUMBER >= 0x0800 */ -+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) ++#if OPENSSL_VERSION_NUMBER < 0x10100000L SSLeay_add_ssl_algorithms(); SSL_load_error_strings(); +#else |