From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8A22B158094 for ; Tue, 12 Jul 2022 02:45:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 392E5E0DCE; Tue, 12 Jul 2022 02:45:55 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1CBA3E0DCE for ; Tue, 12 Jul 2022 02:45:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 074FE340C9C for ; Tue, 12 Jul 2022 02:45:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 63FC1534 for ; Tue, 12 Jul 2022 02:45:52 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1657593942.c2eb9483cac80e3863c3d7f4a01872257f60edec.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/w3mmee/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/w3mmee/files/w3mmee-openssl-1.1.patch X-VCS-Directories: www-client/w3mmee/files/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c2eb9483cac80e3863c3d7f4a01872257f60edec X-VCS-Branch: master Date: Tue, 12 Jul 2022 02:45:52 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a3ae37f7-2ed8-4094-bcf4-ae1e980c2378 X-Archives-Hash: cb99bf41f866062f484762cce5df1f28 commit: c2eb9483cac80e3863c3d7f4a01872257f60edec Author: orbea riseup net> AuthorDate: Mon Jul 11 00:29:45 2022 +0000 Commit: Sam James gentoo org> CommitDate: Tue Jul 12 02:45:42 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2eb9483 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 riseup.net> Closes: https://github.com/gentoo/gentoo/pull/26339 Signed-off-by: Sam James gentoo.org> www-client/w3mmee/files/w3mmee-openssl-1.1.patch | 4 ++-- 1 file 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