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 97F91158094 for ; Tue, 4 Oct 2022 19:27:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B0BDDE08FF; Tue, 4 Oct 2022 19:27:14 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 96CB8E08FF for ; Tue, 4 Oct 2022 19:27:14 +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 C0765340E77 for ; Tue, 4 Oct 2022 19:27:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5C53155B for ; Tue, 4 Oct 2022 19:27:12 +0000 (UTC) From: "Alfredo Tupone" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alfredo Tupone" Message-ID: <1664911599.8b7ccb82d57e650d8a4e35a345ea3561461d34a2.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/gloo/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/gloo/files/gloo-2022.05.18-gentoo.patch X-VCS-Directories: sci-libs/gloo/files/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: 8b7ccb82d57e650d8a4e35a345ea3561461d34a2 X-VCS-Branch: master Date: Tue, 4 Oct 2022 19:27:12 +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: e379fcb1-358b-4e01-ae4b-0c88f3b6d50c X-Archives-Hash: f6640cfde40a295f311e20d4e88089ac commit: 8b7ccb82d57e650d8a4e35a345ea3561461d34a2 Author: Alfredo Tupone gentoo org> AuthorDate: Tue Oct 4 19:26:39 2022 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Tue Oct 4 19:26:39 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b7ccb82 sci-libs/gloo: fix build Closes: https://bugs.gentoo.org/873307 Signed-off-by: Alfredo Tupone gentoo.org> sci-libs/gloo/files/gloo-2022.05.18-gentoo.patch | 30 ++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/sci-libs/gloo/files/gloo-2022.05.18-gentoo.patch b/sci-libs/gloo/files/gloo-2022.05.18-gentoo.patch index e445dc9effdb..09f7588a1858 100644 --- a/sci-libs/gloo/files/gloo-2022.05.18-gentoo.patch +++ b/sci-libs/gloo/files/gloo-2022.05.18-gentoo.patch @@ -72,3 +72,33 @@ #include "gloo/common/linux.h" #include "gloo/common/logging.h" +--- a/gloo/transport/tcp/tls/pair.cc 2022-10-04 21:14:04.099150060 +0200 ++++ b/gloo/transport/tcp/tls/pair.cc 2022-10-04 21:14:22.330886610 +0200 +@@ -17,6 +17,7 @@ + + #include + #include ++#include + + namespace gloo { + namespace transport { +--- a/gloo/common/linux.cc 2022-10-04 21:20:21.401691929 +0200 ++++ b/gloo/common/linux.cc 2022-10-04 21:23:13.924192100 +0200 +@@ -198,7 +198,7 @@ + } ecmd; + int rv; + +- ifr->ifr_data = (__caddr_t)&ecmd; ++ ifr->ifr_data = (char *)&ecmd; + memset(&ecmd, 0, sizeof(ecmd)); + ecmd.req.cmd = ETHTOOL_GLINKSETTINGS; + +@@ -226,7 +226,7 @@ + struct ethtool_cmd edata; + int rv; + +- ifr->ifr_data = (__caddr_t)&edata; ++ ifr->ifr_data = (char *)&edata; + memset(&edata, 0, sizeof(edata)); + edata.cmd = ETHTOOL_GSET; +