lighttpd: update to 1.4.37 1795/head
authorW. Michael Petullo <mike@flyn.org>
Mon, 21 Sep 2015 00:18:04 +0000 (20:18 -0400)
committerW. Michael Petullo <mike@flyn.org>
Mon, 21 Sep 2015 00:18:04 +0000 (20:18 -0400)
Signed-off-by: W. Michael Petullo <mike@flyn.org>
net/lighttpd/Makefile
net/lighttpd/patches/001-fix-out-of-filedescriptors-when-uploading-large-file.patch [deleted file]

index 5c6a10a9d2138cc7b9f14c412fc0460c19b75820..72eb7b66d04a6c2295f8b284251c9e535487493f 100644 (file)
@@ -8,12 +8,12 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=lighttpd
-PKG_VERSION:=1.4.36
+PKG_VERSION:=1.4.37
 PKG_RELEASE:=1
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
 PKG_SOURCE_URL:=http://download.lighttpd.net/lighttpd/releases-1.4.x
-PKG_MD5SUM:=1843daffcb018aa528f6d15d43544654
+PKG_MD5SUM:=ca40168f54b46ee29475868ced8507d6
 
 PKG_LICENSE:=BSD-3c
 PKG_LICENSE_FILES:=COPYING
diff --git a/net/lighttpd/patches/001-fix-out-of-filedescriptors-when-uploading-large-file.patch b/net/lighttpd/patches/001-fix-out-of-filedescriptors-when-uploading-large-file.patch
deleted file mode 100644 (file)
index 6ef9403..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-From: =?UTF-8?q?Stefan=20B=C3=BChler?= <stbuehler@web.de>
-Date: Thu, 13 Aug 2015 18:44:27 +0000
-Subject: [PATCH] fix out-of-filedescriptors when uploading "large" files
- (fixes #2660, thx rmilecki)
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-From: Stefan Bühler <stbuehler@web.de>
-
-git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@3009 152afb58-edef-0310-8abb-c4023f1b3aa9
----
- src/chunk.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
---- a/src/chunk.c
-+++ b/src/chunk.c
-@@ -432,7 +432,7 @@ static int chunkqueue_append_to_tempfile
-        * */
-       if (NULL != dest->last
--              && FILE_CHUNK != dest->last->type
-+              && FILE_CHUNK == dest->last->type
-               && dest->last->file.is_temp
-               && -1 != dest->last->file.fd
-               && 0 == dest->last->offset) {