package/lighttpd: add zstd support

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Fabrice Fontaine 2022-01-23 10:59:53 +01:00 committed by Thomas Petazzoni
parent c2b90b9489
commit 17ed9108a6
2 changed files with 13 additions and 1 deletions
package/lighttpd

View File

@ -65,4 +65,10 @@ config BR2_PACKAGE_LIGHTTPD_ZLIB
help
Enable zlib support for lighttpd mod_deflate.
config BR2_PACKAGE_LIGHTTPD_ZSTD
bool "zstd support"
select BR2_PACKAGE_ZSTD
help
Enable zstd support for lighttpd mod_deflate.
endif

View File

@ -32,7 +32,6 @@ LIGHTTPD_CONF_OPTS = \
-Dwith_wolfssl=false \
-Dwith_xattr=false \
-Dwith_xxhash=true \
-Dwith_zstd=false \
-Dbuild_extra_warnings=false \
-Dbuild_static=false \
-Dmoduledir=lib/lighttpd
@ -92,6 +91,13 @@ else
LIGHTTPD_CONF_OPTS += -Dwith_zlib=false
endif
ifeq ($(BR2_PACKAGE_LIGHTTPD_ZSTD),y)
LIGHTTPD_DEPENDENCIES += zstd
LIGHTTPD_CONF_OPTS += -Dwith_zstd=true
else
LIGHTTPD_CONF_OPTS += -Dwith_zstd=false
endif
define LIGHTTPD_INSTALL_CONFIG
$(INSTALL) -d -m 0755 $(TARGET_DIR)/etc/lighttpd/conf.d
$(INSTALL) -d -m 0755 $(TARGET_DIR)/var/www