mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 13:33:28 +08:00
[0002974] add support for zlib and bzip2 in lighttpd, use alphabetical order for lighttpd config
This commit is contained in:
parent
46ca47e436
commit
e156f34a4a
@ -173,6 +173,9 @@ source "package/libcgicc/Config.in"
|
||||
source "package/libeXosip2/Config.in"
|
||||
source "package/libosip2/Config.in"
|
||||
source "package/libpcap/Config.in"
|
||||
if !BR2_PACKAGE_BUSYBOX_HIDE_OTHERS
|
||||
source "package/lighttpd/Config.in"
|
||||
endif
|
||||
source "package/links/Config.in"
|
||||
source "package/lrzsz/Config.in"
|
||||
source "package/mdnsresponder/Config.in"
|
||||
@ -213,7 +216,6 @@ source "package/stunnel/Config.in"
|
||||
source "package/tcpdump/Config.in"
|
||||
source "package/tftpd/Config.in"
|
||||
if !BR2_PACKAGE_BUSYBOX_HIDE_OTHERS
|
||||
source "package/lighttpd/Config.in"
|
||||
source "package/thttpd/Config.in"
|
||||
source "package/tinyhttpd/Config.in"
|
||||
endif
|
||||
|
@ -16,13 +16,29 @@ if BR2_PACKAGE_LIGHTTPD
|
||||
menu "lighttpd packages"
|
||||
|
||||
config BR2_PACKAGE_LIGHTTPD_OPENSSL
|
||||
bool "openssl"
|
||||
bool "lighttpd openssl support"
|
||||
default y
|
||||
depends on BR2_PACKAGE_LIGHTTPD
|
||||
select BR2_PACKAGE_OPENSSL
|
||||
help
|
||||
Enable OpenSSL support for lighttpd.
|
||||
|
||||
config BR2_PACKAGE_LIGHTTPD_ZLIB
|
||||
bool "lighttpd zlib support"
|
||||
default n
|
||||
depends on BR2_PACKAGE_LIGHTTPD
|
||||
select BR2_PACKAGE_ZLIB
|
||||
help
|
||||
Enable zlib support for lighttpd mod_compress.
|
||||
|
||||
config BR2_PACKAGE_LIGHTTPD_BZIP2
|
||||
bool "lighttpd bzip2 support"
|
||||
default n
|
||||
depends on BR2_PACKAGE_LIGHTTPD
|
||||
select BR2_PACKAGE_BZIP2
|
||||
help
|
||||
Enable bzip2 support for lighttpd mod_compress.
|
||||
|
||||
config BR2_PACKAGE_LIGHTTPD_PCRE
|
||||
bool "pcre"
|
||||
default n
|
||||
|
@ -30,6 +30,20 @@ else
|
||||
LIGHTTPD_CONF_OPT += --without-openssl
|
||||
endif
|
||||
|
||||
ifeq ($(strip $(BR2_PACKAGE_LIGHTTPD_ZLIB)),y)
|
||||
LIGHTTPD_DEPENDENCIES += zlib
|
||||
LIGHTTPD_CONF_OPT += --with-zlib
|
||||
else
|
||||
LIGHTTPD_CONF_OPT += --without-zlib
|
||||
endif
|
||||
|
||||
ifeq ($(strip $(BR2_PACKAGE_LIGHTTPD_BZIP2)),y)
|
||||
LIGHTTPD_DEPENDENCIES += bzip2
|
||||
LIGHTTPD_CONF_OPT += --with-bzip2
|
||||
else
|
||||
LIGHTTPD_CONF_OPT += --without-bzip2
|
||||
endif
|
||||
|
||||
ifeq ($(strip $(BR2_PACKAGE_LIGHTTPD_PCRE)),y)
|
||||
LIGHTTPD_CONF_ENV += PCRE_LIB="-lpcre"
|
||||
LIGHTTPD_DEPENDENCIES += pcre
|
||||
|
Loading…
Reference in New Issue
Block a user