summaryrefslogtreecommitdiff
path: root/www/lighttpd/patches
diff options
context:
space:
mode:
authorjoerg <joerg>2008-03-15 10:53:50 +0000
committerjoerg <joerg>2008-03-15 10:53:50 +0000
commit800c2ece947f9ee99dcbb9b2d06b622b0122141f (patch)
tree6229cf4fcdcad314fe13c93e8d7205d681a064f3 /www/lighttpd/patches
parent46487c68fd66f235b266cc32ac7b3c868afaf50a (diff)
downloadpkgsrc-800c2ece947f9ee99dcbb9b2d06b622b0122141f.tar.gz
lighttpd-1.4.19:
Fix a DOS under high load and some information leaks.
Diffstat (limited to 'www/lighttpd/patches')
-rw-r--r--www/lighttpd/patches/patch-aa15
-rw-r--r--www/lighttpd/patches/patch-ac21
-rw-r--r--www/lighttpd/patches/patch-ad12
-rw-r--r--www/lighttpd/patches/patch-ae13
4 files changed, 0 insertions, 61 deletions
diff --git a/www/lighttpd/patches/patch-aa b/www/lighttpd/patches/patch-aa
deleted file mode 100644
index d65abea1613..00000000000
--- a/www/lighttpd/patches/patch-aa
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-aa,v 1.7 2007/09/10 13:59:50 jlam Exp $
-
---- configure.orig Sun Sep 9 19:55:31 2007
-+++ configure
-@@ -28161,10 +28161,6 @@ fi
-
-
-
--if test "${GCC}" = "yes"; then
-- CFLAGS="${CFLAGS} -Wall -W -Wshadow -pedantic -std=gnu99"
--fi
--
- LIGHTTPD_VERSION_ID=`echo $PACKAGE_VERSION | $AWK -F '.' '{print "(" $1 " << 16 | " $2 " << 8 | " $3 ")"}'`
-
- cat >>confdefs.h <<_ACEOF
diff --git a/www/lighttpd/patches/patch-ac b/www/lighttpd/patches/patch-ac
deleted file mode 100644
index 61154bd437b..00000000000
--- a/www/lighttpd/patches/patch-ac
+++ /dev/null
@@ -1,21 +0,0 @@
-$NetBSD: patch-ac,v 1.3 2007/09/10 13:59:51 jlam Exp $
-
---- src/etag.c.orig Mon Aug 27 21:54:45 2007
-+++ src/etag.c
-@@ -1,5 +1,15 @@
-+#ifdef HAVE_CONFIG_H
-+# include "config.h"
-+#endif
-+
- #include <string.h>
--#include <stdint.h>
-+
-+#ifdef HAVE_STDINT_H
-+# include <stdint.h>
-+#endif
-+#ifdef HAVE_INTTYPES_H
-+# include <inttypes.h>
-+#endif
-
- #include "buffer.h"
- #include "etag.h"
diff --git a/www/lighttpd/patches/patch-ad b/www/lighttpd/patches/patch-ad
deleted file mode 100644
index 18201a381f0..00000000000
--- a/www/lighttpd/patches/patch-ad
+++ /dev/null
@@ -1,12 +0,0 @@
-$NetBSD: patch-ad,v 1.3 2008/03/04 11:17:57 kefren Exp $
---- src/fdevent_solaris_devpoll.c.orig 2008-03-04 13:12:51.000000000 +0200
-+++ src/fdevent_solaris_devpoll.c 2008-03-04 13:13:02.000000000 +0200
-@@ -67,7 +67,7 @@ static int fdevent_solaris_devpoll_poll(
- int ret;
-
- dopoll.dp_timeout = timeout_ms;
-- dopoll.dp_nfds = ev->maxfds;
-+ dopoll.dp_nfds = ev->maxfds - 1;
- dopoll.dp_fds = ev->devpollfds;
-
- ret = ioctl(ev->devpoll_fd, DP_POLL, &dopoll);
diff --git a/www/lighttpd/patches/patch-ae b/www/lighttpd/patches/patch-ae
deleted file mode 100644
index 77f429e8c4f..00000000000
--- a/www/lighttpd/patches/patch-ae
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ae,v 1.3 2008/03/04 11:17:57 kefren Exp $
---- src/server.c.orig 2008-03-04 13:13:12.000000000 +0200
-+++ src/server.c 2008-03-04 13:13:56.000000000 +0200
-@@ -697,9 +697,6 @@ int main (int argc, char **argv) {
- }
- }
-
-- /* #372: solaris need some fds extra for devpoll */
-- if (rlim.rlim_cur > 10) rlim.rlim_cur -= 10;
--
- if (srv->event_handler == FDEVENT_HANDLER_SELECT) {
- srv->max_fds = rlim.rlim_cur < FD_SETSIZE - 200 ? rlim.rlim_cur : FD_SETSIZE - 200;
- } else {