package/proftpd: add mod_sql_sqlite

Enable mod_sql_sqlite as a compile time option

Signed-off-by: Jared Bents <jared.bents@rockwellcollins.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Jared Bents 2018-12-03 08:34:18 -06:00 committed by Thomas Petazzoni
parent 68a416f9a2
commit 694846b92a
2 changed files with 15 additions and 0 deletions

View File

@ -31,6 +31,16 @@ config BR2_PACKAGE_PROFTPD_MOD_SQL
help
Compile ProFTPD with mod_sql support.
if BR2_PACKAGE_PROFTPD_MOD_SQL
config BR2_PACKAGE_PROFTPD_MOD_SQL_SQLITE
bool "mod_sql_sqlite support"
select BR2_PACKAGE_SQLITE
help
Compile ProFTPD with mod_sql_sqlite support.
endif
config BR2_PACKAGE_PROFTPD_MOD_QUOTATAB
bool "mod_quotatab support"
help

View File

@ -47,6 +47,11 @@ ifeq ($(BR2_PACKAGE_PROFTPD_MOD_SQL),y)
PROFTPD_MODULES += mod_sql
endif
ifeq ($(BR2_PACKAGE_PROFTPD_MOD_SQL_SQLITE),y)
PROFTPD_MODULES += mod_sql_sqlite
PROFTPD_DEPENDENCIES += sqlite
endif
ifeq ($(BR2_PACKAGE_PROFTPD_MOD_QUOTATAB),y)
PROFTPD_MODULES += mod_quotatab
endif