summaryrefslogtreecommitdiff
path: root/sci-libs/gloo/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-10-05 01:18:42 +0100
committerV3n3RiX <venerix@koprulu.sector>2022-10-05 01:18:42 +0100
commit5b84ef1b7530528af1eda8310641c6396df8143c (patch)
tree1dd8187ec16709816078d4b474e15257409a25db /sci-libs/gloo/files
parent07b0c0005f55e652101816d9f4cfe73403bf0906 (diff)
gentoo auto-resync : 05:10:2022 - 01:18:42
Diffstat (limited to 'sci-libs/gloo/files')
-rw-r--r--sci-libs/gloo/files/gloo-2022.05.18-gentoo.patch30
1 files changed, 30 insertions, 0 deletions
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 <cstring>
+ #include <poll.h>
++#include <array>
+
+ 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;
+