mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-26 23:13:27 +08:00
package: add spawn-fcgi package
Closes #417, New package spawn-fcgi, basically a FastCGI process spawner. This was previously included in lighttpd up to version 1.4.22 and is now a separate project. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
264b9c115d
commit
0468be6e07
1
CHANGES
1
CHANGES
@ -15,6 +15,7 @@
|
||||
#395: gst-plugins-bad: New package
|
||||
#409: Bump php package to 5.2.10
|
||||
#411: ipsec-tools: Bump version to 0.7.2
|
||||
#417: New package spawn-fcgi
|
||||
#419: Bump lighttpd package to 1.4.23
|
||||
|
||||
2009.05, Released June 1st, 2009:
|
||||
|
@ -198,6 +198,7 @@ source "package/quagga/Config.in"
|
||||
source "package/rsync/Config.in"
|
||||
source "package/samba/Config.in"
|
||||
source "package/socat/Config.in"
|
||||
source "package/spawn-fcgi/Config.in"
|
||||
source "package/stunnel/Config.in"
|
||||
source "package/tcpdump/Config.in"
|
||||
source "package/tftpd/Config.in"
|
||||
|
7
package/spawn-fcgi/Config.in
Normal file
7
package/spawn-fcgi/Config.in
Normal file
@ -0,0 +1,7 @@
|
||||
config BR2_PACKAGE_SPAWN_FCGI
|
||||
bool "spawn-fcgi"
|
||||
help
|
||||
FastCGI process spawner.
|
||||
Project split from lighttpd.
|
||||
|
||||
http://redmine.lighttpd.net/projects/spawn-fcgi
|
15
package/spawn-fcgi/spawn-fcgi.mk
Normal file
15
package/spawn-fcgi/spawn-fcgi.mk
Normal file
@ -0,0 +1,15 @@
|
||||
#############################################################
|
||||
#
|
||||
# spawn-fcgi
|
||||
#
|
||||
#############################################################
|
||||
|
||||
SPAWN_FCGI_VERSION = 1.6.2
|
||||
SPAWN_FCGI_SITE = http://www.lighttpd.net/download
|
||||
SPAWN_FCGI_SOURCE = spawn-fcgi-$(SPAWN_FCGI_VERSION).tar.bz2
|
||||
|
||||
ifneq ($(BR2_INET_IPV6),y)
|
||||
SPAWN_FCGI_CONF_OPT = --disable-ipv6
|
||||
endif
|
||||
|
||||
$(eval $(call AUTOTARGETS,package,spawn-fcgi))
|
Loading…
Reference in New Issue
Block a user