From 01b087c04347f20a3186c8f0c2f2df577e209354 Mon Sep 17 00:00:00 2001 From: "W. Michael Petullo" Date: Sun, 20 Sep 2015 20:18:04 -0400 Subject: [PATCH] lighttpd: update to 1.4.37 Signed-off-by: W. Michael Petullo --- net/lighttpd/Makefile | 4 +-- ...escriptors-when-uploading-large-file.patch | 26 ------------------- 2 files changed, 2 insertions(+), 28 deletions(-) delete mode 100644 net/lighttpd/patches/001-fix-out-of-filedescriptors-when-uploading-large-file.patch diff --git a/net/lighttpd/Makefile b/net/lighttpd/Makefile index 5c6a10a9d..72eb7b66d 100644 --- a/net/lighttpd/Makefile +++ b/net/lighttpd/Makefile @@ -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 index 6ef94030a..000000000 --- a/net/lighttpd/patches/001-fix-out-of-filedescriptors-when-uploading-large-file.patch +++ /dev/null @@ -1,26 +0,0 @@ -From: =?UTF-8?q?Stefan=20B=C3=BChler?= -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 - -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) {