diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2014-10-27 10:25:07 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2014-10-27 10:25:07 +0000 |
commit | ba48074622ba4f756a7ca686a9aef43f490563e5 (patch) | |
tree | 57f32d24d55202972af4a991631a53b68057b1ab /package | |
parent | f967a49dd018f6b8e8e0a3b5c5e154a96211a4e0 (diff) | |
download | upstream-ba48074622ba4f756a7ca686a9aef43f490563e5.tar.gz upstream-ba48074622ba4f756a7ca686a9aef43f490563e5.tar.bz2 upstream-ba48074622ba4f756a7ca686a9aef43f490563e5.zip |
uhttpd: fix HTTP incompatibilities in file handler
* Fixes sending an extraneous message body for 204 and 304 resoponses which
breaks Chrome in keep-alive mode.
* Adds mimetypes for JSON and JSONP.
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
SVN-Revision: 43078
Diffstat (limited to 'package')
-rw-r--r-- | package/network/services/uhttpd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/network/services/uhttpd/Makefile b/package/network/services/uhttpd/Makefile index a93b40a085..5276a99d1c 100644 --- a/package/network/services/uhttpd/Makefile +++ b/package/network/services/uhttpd/Makefile @@ -8,13 +8,13 @@ include $(TOPDIR)/rules.mk PKG_NAME:=uhttpd -PKG_VERSION:=2014-08-25 +PKG_VERSION:=2014-10-27 PKG_RELEASE=$(PKG_SOURCE_VERSION) PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=git://nbd.name/uhttpd2.git PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) -PKG_SOURCE_VERSION:=dabd7dea6445aaa0e5b8d9add1872fa7393b3a85 +PKG_SOURCE_VERSION:=fd8e5e379c23c5fbcec3e76894b839233df09067 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz PKG_MAINTAINER:=Felix Fietkau <nbd@openwrt.org> |