package/lighttpd: add maxminddb 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:55 +01:00 committed by Thomas Petazzoni
parent 0e6ea33ded
commit c97efff6aa
2 changed files with 13 additions and 1 deletions

View File

@ -39,6 +39,12 @@ config BR2_PACKAGE_LIGHTTPD_LUA
help
Enable Lua support. Needed to support mod_magnet
config BR2_PACKAGE_LIGHTTPD_MAXMINDDB
bool "maxminddb support"
select BR2_PACKAGE_LIBMAXMINDDB
help
Enable MaxMind GeoIP2 support. Needed to support mod_maxminddb
config BR2_PACKAGE_LIGHTTPD_OPENSSL
bool "openssl support"
select BR2_PACKAGE_OPENSSL

View File

@ -20,7 +20,6 @@ LIGHTTPD_CONF_OPTS = \
-Dwith_ldap=false \
-Dwith_libev=false \
-Dwith_libunwind=false \
-Dwith_maxminddb=false \
-Dwith_mbedtls=false \
-Dwith_mysql=false \
-Dwith_nettle=false \
@ -56,6 +55,13 @@ else
LIGHTTPD_CONF_OPTS += -Dwith_lua=false
endif
ifeq ($(BR2_PACKAGE_LIGHTTPD_MAXMINDDB),y)
LIGHTTPD_DEPENDENCIES += libmaxminddb
LIGHTTPD_CONF_OPTS += -Dwith_maxminddb=true
else
LIGHTTPD_CONF_OPTS += -Dwith_maxminddb=false
endif
ifeq ($(BR2_PACKAGE_LIGHTTPD_OPENSSL),y)
LIGHTTPD_DEPENDENCIES += openssl
LIGHTTPD_CONF_OPTS += -Dwith_openssl=true