summaryrefslogtreecommitdiffhomepage
path: root/patches/lighttpd-1.4.67.local.patch
diff options
context:
space:
mode:
authorØrjan Malde <red@foxi.me>2022-09-22 21:37:32 +0200
committerØrjan Malde <red@foxi.me>2022-09-22 21:37:32 +0200
commit44a4c56fee17c6802da1fe6640bfb98e28d24d78 (patch)
tree44131298d279a9ea6d02df68c87eb8a76dce5030 /patches/lighttpd-1.4.67.local.patch
parent32059da02d8723693996727cf57aa74959e7cef8 (diff)
downloadmidipix_build-44a4c56fee17c6802da1fe6640bfb98e28d24d78.tar.bz2
midipix_build-44a4c56fee17c6802da1fe6640bfb98e28d24d78.tar.xz
groups/241.native_packages_inet.group: lighttpd: bump to v1.4.67
Signed-off-by: Ørjan Malde <red@foxi.me>
Diffstat (limited to 'patches/lighttpd-1.4.67.local.patch')
-rw-r--r--patches/lighttpd-1.4.67.local.patch18
1 files changed, 18 insertions, 0 deletions
diff --git a/patches/lighttpd-1.4.67.local.patch b/patches/lighttpd-1.4.67.local.patch
new file mode 100644
index 00000000..50a2ce94
--- /dev/null
+++ b/patches/lighttpd-1.4.67.local.patch
@@ -0,0 +1,18 @@
+--- lighttpd-1.4.45/src/network.c.orig 2017-01-14 05:05:17.000000000 +0000
++++ lighttpd-1.4.45/src/network.c 2018-02-17 20:39:33.920000000 +0000
+@@ -53,6 +53,7 @@
+ void
+ network_accept_tcp_nagle_disable (const int fd)
+ {
++#ifndef __midipix__
+ static int noinherit_tcpnodelay = -1;
+ int opt;
+
+@@ -70,6 +71,7 @@
+
+ opt = 1;
+ (void)setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &opt, sizeof(opt));
++#endif
+ }
+
+ static handler_t network_server_handle_fdevent(server *srv, void *context, int revents) {