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:
parent
68a416f9a2
commit
694846b92a
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user