diff options
author | Baruch Siach <baruch@tkos.co.il> | 2018-10-09 14:49:34 +0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-10-09 14:48:18 +0200 |
commit | 419c47a2135d6a72d18efef921c08b72f8f080f1 (patch) | |
tree | 358e99810568d956503ba98cea7e37c9bb20e55c /package/squid/0002-missing-include-time_h.patch | |
parent | d0758184c03f6bb7928cb957faa649be68a145c5 (diff) | |
download | buildroot-419c47a2135d6a72d18efef921c08b72f8f080f1.tar.gz buildroot-419c47a2135d6a72d18efef921c08b72f8f080f1.zip |
squid: bump to version 4.3
Drop get_certificate test avoidance patch; upstream made the test cross
compile friendly in commit 958ae827cabf (Fix cross-compile issues with
SSL_get_certificate())
Drop the patch adding <time.h>; the code does not call time() anymore.
Restore netfilter support under musl libc. Squid build fine with current
musl version.
Cc: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'package/squid/0002-missing-include-time_h.patch')
-rw-r--r-- | package/squid/0002-missing-include-time_h.patch | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/package/squid/0002-missing-include-time_h.patch b/package/squid/0002-missing-include-time_h.patch deleted file mode 100644 index 18b3ab3b55..0000000000 --- a/package/squid/0002-missing-include-time_h.patch +++ /dev/null @@ -1,28 +0,0 @@ -ipc/Kid.cc: add missing include of time.h - -Function time() comes from <time.h>, so add the necessary include. -This fixes compilation on some configurations, for example -http://autobuild.buildroot.net/results/b33/b33e1f41e50b6e7ac3e30806b9a617d451bc27b4/ - -Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> -Upstream-status: submitted (http://bugs.squid-cache.org/show_bug.cgi?id=3967) - ---- - src/ipc/Kid.cc | 4 ++++ - 1 files changed, 4 insertions(+), 0 deletions(-) - - -diff --git a/src/ipc/Kid.cc b/src/ipc/Kid.cc ---- a/src/ipc/Kid.cc -+++ b/src/ipc/Kid.cc -@@ -11,6 +11,10 @@ - #include <sys/wait.h> - #endif - -+#if HAVE_TIME_H -+#include <time.h> -+#endif -+ - int TheProcessKind = pkOther; - - Kid::Kid(): |