package/lighttpd: add mysql support

lighttpd only supports mariadb

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
This commit is contained in:
Fabrice Fontaine 2022-02-06 08:38:05 +01:00 committed by Arnout Vandecappelle (Essensium/Mind)
parent f67a6e9b7a
commit 1cd93b69cc
2 changed files with 16 additions and 1 deletions

View File

@ -61,6 +61,15 @@ config BR2_PACKAGE_LIGHTTPD_MAXMINDDB
help
Enable MaxMind GeoIP2 support. Needed to support mod_maxminddb
config BR2_PACKAGE_LIGHTTPD_MYSQL
bool "mysql support"
depends on BR2_PACKAGE_MARIADB
help
Enable mysql support for lighttpd mod_vhostdb_mysql.
comment "mysql support needs mariadb"
depends on !BR2_PACKAGE_MARIADB
config BR2_PACKAGE_LIGHTTPD_OPENSSL
bool "openssl support"
select BR2_PACKAGE_OPENSSL

View File

@ -19,7 +19,6 @@ LIGHTTPD_CONF_OPTS = \
-Dwith_libev=false \
-Dwith_libunwind=false \
-Dwith_mbedtls=false \
-Dwith_mysql=false \
-Dwith_nettle=false \
-Dwith_nss=false \
-Dwith_pcre=false \
@ -73,6 +72,13 @@ else
LIGHTTPD_CONF_OPTS += -Dwith_maxminddb=false
endif
ifeq ($(BR2_PACKAGE_LIGHTTPD_MYSQL),y)
LIGHTTPD_DEPENDENCIES += mysql
LIGHTTPD_CONF_OPTS += -Dwith_mysql=true
else
LIGHTTPD_CONF_OPTS += -Dwith_mysql=false
endif
ifeq ($(BR2_PACKAGE_LIGHTTPD_OPENSSL),y)
LIGHTTPD_DEPENDENCIES += openssl
LIGHTTPD_CONF_OPTS += -Dwith_openssl=true