packages/net/hiawatha/Makefile
florian b4ac1b2769 [package] hiawatha: update to 7.6
Hi,

this patch updates hiawatha to 7.6.

Changelog since 7.3:

    PreventSQLi option rewritten.
    OldBrowser option added to URL toolkit.
    Improved mimetype configuration.
    Do-not-track HTTP header support.
    Password file entries can now be created with Wigwam.
    Small bugfixes and improvements.
    Bugfix: sent one byte too few for Range -XX.
    Bugfix: possible crash when using PreventSQLi.
    Bugfix: integer overflow in fetch_request() which could lead to a server crash.
    Connections per IP added to RequestLimitMask.
    NoExtensionAs made a per-host setting.
    Small bugfixes and improvements.
    Bugfix: usage of HideProxy caused Hiawatha to refuse new connections after ConnectionsTotal connections.
    Bugfix: memory leak in XSLT module.

Regards,

patch from Raphael Huck.

git-svn-id: svn://svn.openwrt.org/openwrt/packages@28232 3c298f89-4303-0410-b956-a3cf2f4a3e73
2011-09-13 17:29:27 +00:00

60 lines
1.3 KiB
Makefile

#
# Copyright (C) 2006-2011 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=hiawatha
PKG_VERSION:=7.6
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://www.hiawatha-webserver.org/files/
PKG_MD5SUM:=45e7c3229a94d19abb5d92daa36c61d9
PKG_INSTALL:=1
include $(INCLUDE_DIR)/package.mk
define Package/hiawatha
CATEGORY:=Network
SECTION:=net
SUBMENU:=Web Servers/Proxies
TITLE:=A very lightweight web server
URL:=http://www.hiawatha-webserver.org/
MAINTAINER:=Raphaël HUCK <rhk@cksum.org>
DEPENDS:=+libpthread
endef
define Package/hiawatha/description
Hiawatha is an open source webserver with a focus on security.
endef
CONFIGURE_ARGS+= \
--disable-cache \
--disable-monitor \
--disable-ssl \
--disable-xslt
CONFIGURE_VARS+= \
ac_cv_file__dev_urandom=yes \
webrootdir=/www
define Package/hiawatha/conffiles
/etc/hiawatha/hiawatha.conf
/etc/hiawatha/mimetype.conf
endef
define Package/hiawatha/install
$(INSTALL_DIR) $(1)/usr/sbin
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/hiawatha $(1)/usr/sbin/
$(INSTALL_DIR) $(1)/etc/hiawatha
$(INSTALL_CONF) $(PKG_INSTALL_DIR)/etc/hiawatha/{hiawatha,mimetype}.conf $(1)/etc/hiawatha/
endef
$(eval $(call BuildPackage,hiawatha))