diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2021-09-21 19:01:57 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2021-09-21 20:25:54 +0200 |
commit | 23411f7dc9810cf379414a43fbab00738af3417b (patch) | |
tree | 0c42dd9b119471c85a4cedbc2ed70ecdf781d94d /net-proxy | |
parent | sci-visualization/paraview: remove unused patches (diff) | |
download | gentoo-23411f7dc9810cf379414a43fbab00738af3417b.tar.gz gentoo-23411f7dc9810cf379414a43fbab00738af3417b.tar.bz2 gentoo-23411f7dc9810cf379414a43fbab00738af3417b.zip |
net-proxy/haproxy: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/22357
Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'net-proxy')
-rw-r--r-- | net-proxy/haproxy/files/haproxy-2.3.0-hpack-VAR_ARRAY.patch | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/net-proxy/haproxy/files/haproxy-2.3.0-hpack-VAR_ARRAY.patch b/net-proxy/haproxy/files/haproxy-2.3.0-hpack-VAR_ARRAY.patch deleted file mode 100644 index 4f6bf4cf7174..000000000000 --- a/net-proxy/haproxy/files/haproxy-2.3.0-hpack-VAR_ARRAY.patch +++ /dev/null @@ -1,37 +0,0 @@ -From 759146f0de143939b841ba987aabb83aa178a4fc Mon Sep 17 00:00:00 2001 -From: Christian Ruppert <idl0r@qasl.de> -Date: Mon, 9 Nov 2020 09:15:21 +0100 -Subject: [PATCH] hpack-tbl-t.h uses VAR_ARRAY and requires compiler.h to be - included - -This fixes building hpack from contrib, which failed because of the -undeclared VAR_ARRAY: - -make -C contrib/hpack -... -cc -O2 -Wall -g -I../../include -fwrapv -fno-strict-aliasing -c -o gen-enc.o gen-enc.c -In file included from gen-enc.c:18: -../../include/haproxy/hpack-tbl-t.h:105:23: error: 'VAR_ARRAY' undeclared here (not in a function) - 105 | struct hpack_dte dte[VAR_ARRAY]; /* dynamic table entries */ -... - -Signed-off-by: Christian Ruppert <idl0r@qasl.de> ---- - include/haproxy/hpack-tbl-t.h | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/include/haproxy/hpack-tbl-t.h b/include/haproxy/hpack-tbl-t.h -index 344f665dd..07f1ca9ea 100644 ---- a/include/haproxy/hpack-tbl-t.h -+++ b/include/haproxy/hpack-tbl-t.h -@@ -28,6 +28,7 @@ - #define _HAPROXY_HPACK_TBL_T_H - - #include <inttypes.h> -+#include "compiler.h" - - /* Dynamic Headers Table, usable for tables up to 4GB long and values of 64kB-1. - * The model can be improved by using offsets relative to the table entry's end --- -2.26.2 - |