diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2009-07-01 15:31:59 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-07-01 15:35:20 +0200 |
commit | 264b9c115d2cb9e6db3f574ae114bccc5036a669 (patch) | |
tree | c538c8994ba2427ad3d58c2de86466515db0db0e /package/lighttpd/lighttpd.mk | |
parent | 5818010f92c37cdfa2667bc52616f134bc167148 (diff) |
lighttpd: bump version
Closes #419.
lighttpd 1.4.23 is out, there are many bugfixes from 1.4.20 currently in
buildroot:
* Fix workaround for incorrect path info/scriptname if fastcgi prefix is
”/” (fixes #729)
* Finally removed spawn-fcgi
* Fix bug with FastCGI request id overflow under high load; just use always
id 1 as we don’t use multiplexing. (thx jgray)
* Workaround broken operating systems: check for trailing ’/’ in filenames
(fixes #1989)
Plus fixes from 1.4.22 and 1.4.21.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/lighttpd/lighttpd.mk')
-rw-r--r-- | package/lighttpd/lighttpd.mk | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/package/lighttpd/lighttpd.mk b/package/lighttpd/lighttpd.mk index 7f5a630e9..e842c60ce 100644 --- a/package/lighttpd/lighttpd.mk +++ b/package/lighttpd/lighttpd.mk @@ -3,13 +3,12 @@ # lighttpd # ############################################################# -LIGHTTPD_VERSION:=1.4.20 -LIGHTTPD_SOURCE:=lighttpd-$(LIGHTTPD_VERSION).tar.bz2 -LIGHTTPD_SITE:=http://www.lighttpd.net/download -LIGHTTPD_INSTALL_STAGING = NO -LIGHTTPD_INSTALL_TARGET = YES + +LIGHTTPD_VERSION = 1.4.23 +LIGHTTPD_SOURCE = lighttpd-$(LIGHTTPD_VERSION).tar.bz2 +LIGHTTPD_SITE = http://www.lighttpd.net/download +LIGHTTPD_LIBTOOL_PATCH = NO LIGHTTPD_DEPENDENCIES = uclibc -LIGHTTPD_CONF_ENV = ifneq ($(BR2_LARGEFILE),y) LIGHTTPD_LFS:=$(DISABLE_LARGEFILE) --disable-lfs @@ -45,7 +44,7 @@ LIGHTTPD_CONF_OPT += --without-bzip2 endif ifeq ($(BR2_PACKAGE_LIGHTTPD_PCRE),y) -LIGHTTPD_CONF_ENV += PCRE_LIB="-lpcre" +LIGHTTPD_CONF_ENV = PCRE_LIB="-lpcre" LIGHTTPD_DEPENDENCIES += pcre LIGHTTPD_CONF_OPT += --with-pcre else @@ -53,3 +52,10 @@ LIGHTTPD_CONF_OPT += --without-pcre endif $(eval $(call AUTOTARGETS,package,lighttpd)) + +$(LIGHTTPD_TARGET_UNINSTALL): + $(call MESSAGE,"Uninstalling") + rm -f $(TARGET_DIR)/usr/sbin/lighttpd + rm -f $(TARGET_DIR)/usr/sbin/lighttpd-angel + rm -rf $(TARGET_DIR)/usr/lib/lighttpd + rm -f $(LIGHTTPD_TARGET_INSTALL_TARGET) $(LIGHTTPD_HOOK_POST_INSTALL) |