From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from smtp2.osuosl.org (smtp2.osuosl.org [140.211.166.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 42F22C433F5 for ; Sat, 15 Jan 2022 11:04:24 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by smtp2.osuosl.org (Postfix) with ESMTP id E503D400C8; Sat, 15 Jan 2022 11:04:23 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from smtp2.osuosl.org ([127.0.0.1]) by localhost (smtp2.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id XApXrbrBSH32; Sat, 15 Jan 2022 11:04:23 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by smtp2.osuosl.org (Postfix) with ESMTP id 0CB5840571; Sat, 15 Jan 2022 11:04:22 +0000 (UTC) Received: from smtp3.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id 0DACE1BF5DD for ; Sat, 15 Jan 2022 11:01:56 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by smtp3.osuosl.org (Postfix) with ESMTP id 0870D605E8 for ; Sat, 15 Jan 2022 11:01:55 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from smtp3.osuosl.org ([127.0.0.1]) by localhost (smtp3.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id pMZsUoRKtsfQ for ; Sat, 15 Jan 2022 11:01:54 +0000 (UTC) Received: from busybox.osuosl.org (busybox.osuosl.org [140.211.167.122]) by smtp3.osuosl.org (Postfix) with ESMTP id 524F960A8F for ; Sat, 15 Jan 2022 11:01:54 +0000 (UTC) Received: by busybox.osuosl.org (Postfix, from userid 4021) id 6A6DE829FE; Sat, 15 Jan 2022 10:55:26 +0000 (UTC) From: Peter Korsgaard To: buildroot@buildroot.org Date: Sat, 15 Jan 2022 11:50:36 +0100 X-Git-Refname: refs/heads/2021.02.x X-Git-Oldrev: 6be56b0fd91c86b606bdbdcc52d9bddc1d47034b X-Git-Newrev: d645ab244230c03908e7cb6c440ba143c9203cf5 X-Patchwork-Hint: ignore Message-Id: <20220115105526.6A6DE829FE@busybox.osuosl.org> Subject: [Buildroot] [git commit branch/2021.02.x] package/clamav: drop first patch X-BeenThere: buildroot@buildroot.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============9092196028496023648==" Errors-To: buildroot-bounces@buildroot.org Sender: "buildroot" --===============9092196028496023648== Content-Type: text/plain commit: https://git.buildroot.net/buildroot/commit/?id=d645ab244230c03908e7cb6c440ba143c9203cf5 branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/2021.02.x First patch is not needed since bump to version 0.99.1 in commit 2c8e5dd69f4f281b2b497ae7ec9ec95c47e7c80c and https://github.com/Cisco-Talos/clamav/commit/689005317680854627b79c76ffa6e42a8160b0e1 Signed-off-by: Fabrice Fontaine Signed-off-by: Arnout Vandecappelle (Essensium/Mind) (cherry picked from commit 3d565a831d7316ffbd182694b25674ab0101718b) Signed-off-by: Peter Korsgaard --- ...roto.c-fix-build-error-due-to-missing-soc.patch | 34 ---------------------- ...use-backtrace-if-using-uClibc-without-ba.patch} | 0 2 files changed, 34 deletions(-) diff --git a/package/clamav/0001-clamdscan-proto.c-fix-build-error-due-to-missing-soc.patch b/package/clamav/0001-clamdscan-proto.c-fix-build-error-due-to-missing-soc.patch deleted file mode 100644 index daac677eaa..0000000000 --- a/package/clamav/0001-clamdscan-proto.c-fix-build-error-due-to-missing-soc.patch +++ /dev/null @@ -1,34 +0,0 @@ -From 52fda6e6689e22866a39ec4273713fb6035c38b2 Mon Sep 17 00:00:00 2001 -From: Bernd Kuhls -Date: Mon, 7 May 2018 23:14:46 +0200 -Subject: [PATCH] clamdscan/proto.c: fix build error due to missing sockaddr_un - definition -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -proto.c: In function ‘dconnect’: -proto.c:86:67: error: invalid application of ‘sizeof’ to incomplete type ‘struct sockaddr_un’ - if (connect(sockd, (struct sockaddr *)&nixsock, sizeof(nixsock)) == 0) - -Signed-off-by: Bernd Kuhls -Upstream-status: http://lurker.clamav.net/message/20140928.130829.5494fd68.en.html ---- - clamdscan/proto.c | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/clamdscan/proto.c b/clamdscan/proto.c -index 0205f6da0..d3396732f 100644 ---- a/clamdscan/proto.c -+++ b/clamdscan/proto.c -@@ -42,6 +42,7 @@ - #include - #include - #include -+#include - #ifdef HAVE_SYS_SELECT_H - #include - #endif --- -2.14.3 - diff --git a/package/clamav/0002-mbox-do-not-use-backtrace-if-using-uClibc-without-ba.patch b/package/clamav/0001-mbox-do-not-use-backtrace-if-using-uClibc-without-ba.patch similarity index 100% rename from package/clamav/0002-mbox-do-not-use-backtrace-if-using-uClibc-without-ba.patch rename to package/clamav/0001-mbox-do-not-use-backtrace-if-using-uClibc-without-ba.patch --===============9092196028496023648== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot --===============9092196028496023648==--