From: jow Date: Fri, 2 Sep 2011 13:28:29 +0000 (+0000) Subject: [package] uhttpd: add "application/x-ns-proxy-autoconfig" mime type (#8236) X-Git-Url: https://git.rohieb.name/openwrt.git/commitdiff_plain/8cb8af6601331ced6f002731e1c55026bb39f5fd?hp=040047ef04833541ea55ddf0285f940bf268d9b8 [package] uhttpd: add "application/x-ns-proxy-autoconfig" mime type (#8236) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28149 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/uhttpd/Makefile b/package/uhttpd/Makefile index 17823ad16..93ac8cf03 100644 --- a/package/uhttpd/Makefile +++ b/package/uhttpd/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=uhttpd -PKG_RELEASE:=24 +PKG_RELEASE:=25 PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME) PKG_CONFIG_DEPENDS := \ diff --git a/package/uhttpd/src/uhttpd-mimetypes.h b/package/uhttpd/src/uhttpd-mimetypes.h index 032d3d0c2..21717c000 100644 --- a/package/uhttpd/src/uhttpd-mimetypes.h +++ b/package/uhttpd/src/uhttpd-mimetypes.h @@ -76,6 +76,9 @@ static struct mimetype uh_mime_types[] = { { "cfg", "text/plain" }, { "conf", "text/plain" }, + { "pac", "application/x-ns-proxy-autoconfig" }, + { "wpad.dat", "application/x-ns-proxy-autoconfig" }, + { NULL, NULL } };