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 DF7D415852A for ; Tue, 20 Aug 2024 08:02:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 39D002BC01A; Tue, 20 Aug 2024 08:01:59 +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 1379B2BC01A for ; Tue, 20 Aug 2024 08:01:59 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 31BE8341707 for ; Tue, 20 Aug 2024 08:01:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 53F7A1F0E for ; Tue, 20 Aug 2024 08:01:47 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1724140898.444b8ec76ff3dd207aff10c2070567c003afbdce.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-servers/apache/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-servers/apache/files/libxmlv212.patch X-VCS-Directories: www-servers/apache/files/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 444b8ec76ff3dd207aff10c2070567c003afbdce X-VCS-Branch: master Date: Tue, 20 Aug 2024 08:01:47 +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: dc0d274b-c160-49fa-bf1d-d00f2010bff4 X-Archives-Hash: 7cf74c68b5524cbf44198128afeead37 commit: 444b8ec76ff3dd207aff10c2070567c003afbdce Author: Michael Mair-Keimberger levelnine at> AuthorDate: Mon Jul 22 16:49:43 2024 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Tue Aug 20 08:01:38 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=444b8ec7 www-servers/apache: remove unused patch Signed-off-by: Michael Mair-Keimberger levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/37674 Signed-off-by: Joonas Niilola gentoo.org> www-servers/apache/files/libxmlv212.patch | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/www-servers/apache/files/libxmlv212.patch b/www-servers/apache/files/libxmlv212.patch deleted file mode 100644 index 281633b27ca7..000000000000 --- a/www-servers/apache/files/libxmlv212.patch +++ /dev/null @@ -1,24 +0,0 @@ -https://github.com/apache/httpd/pull/393 - -From bd2c4e466e0949f6f770bbb2569ce5ae9b3965c0 Mon Sep 17 00:00:00 2001 -From: ttachi -Date: Fri, 17 Nov 2023 22:24:45 +0900 -Subject: [PATCH] mod_xml2enc: remove dependency on xmlstring header - ---- - modules/filters/mod_xml2enc.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/modules/filters/mod_xml2enc.c b/modules/filters/mod_xml2enc.c -index 34f8e8ee090..0d3d13c1239 100644 ---- a/modules/filters/mod_xml2enc.c -+++ b/modules/filters/mod_xml2enc.c -@@ -209,7 +209,7 @@ static void sniff_encoding(request_rec* r, xml2ctx* ctx) - - /* to sniff, first we look for BOM */ - if (ctx->xml2enc == XML_CHAR_ENCODING_NONE) { -- ctx->xml2enc = xmlDetectCharEncoding((const xmlChar*)ctx->buf, -+ ctx->xml2enc = xmlDetectCharEncoding((const unsigned char*)ctx->buf, - ctx->bytes); - if (HAVE_ENCODING(ctx->xml2enc)) { - ap_log_rerror(APLOG_MARK, APLOG_INFO, 0, r, APLOGNO(01432)