mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-05-11 09:48:24 +02:00
squid: Fix build with GCC 11
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
committed by
Arne Fitzenreiter
parent
5a5ed9e418
commit
ab3358655c
@@ -77,6 +77,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
|||||||
@$(PREBUILD)
|
@$(PREBUILD)
|
||||||
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar xaf $(DIR_DL)/$(DL_FILE)
|
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar xaf $(DIR_DL)/$(DL_FILE)
|
||||||
|
|
||||||
|
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/squid-gcc11.patch
|
||||||
cd $(DIR_APP) && autoreconf -vfi
|
cd $(DIR_APP) && autoreconf -vfi
|
||||||
cd $(DIR_APP)/libltdl && autoreconf -vfi
|
cd $(DIR_APP)/libltdl && autoreconf -vfi
|
||||||
|
|
||||||
|
|||||||
24
src/patches/squid-gcc11.patch
Normal file
24
src/patches/squid-gcc11.patch
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
diff --git a/src/acl/ConnMark.cc b/src/acl/ConnMark.cc
|
||||||
|
index 1fdae0c..213cf39 100644
|
||||||
|
--- a/src/acl/ConnMark.cc
|
||||||
|
+++ b/src/acl/ConnMark.cc
|
||||||
|
@@ -15,6 +15,7 @@
|
||||||
|
#include "Debug.h"
|
||||||
|
#include "http/Stream.h"
|
||||||
|
#include "sbuf/Stream.h"
|
||||||
|
+#include <limits>
|
||||||
|
|
||||||
|
bool
|
||||||
|
Acl::ConnMark::empty() const
|
||||||
|
diff --git a/src/security/ServerOptions.cc b/src/security/ServerOptions.cc
|
||||||
|
index 5cd81ab..3f73892 100644
|
||||||
|
--- a/src/security/ServerOptions.cc
|
||||||
|
+++ b/src/security/ServerOptions.cc
|
||||||
|
@@ -6,6 +6,7 @@
|
||||||
|
* Please see the COPYING and CONTRIBUTORS files for details.
|
||||||
|
*/
|
||||||
|
|
||||||
|
+#include <limits>
|
||||||
|
#include "squid.h"
|
||||||
|
#include "anyp/PortCfg.h"
|
||||||
|
#include "base/Packable.h"
|
||||||
Reference in New Issue
Block a user