mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 06:06:32 +00:00
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
|
help
|
||||||
Compile ProFTPD with mod_sql support.
|
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
|
config BR2_PACKAGE_PROFTPD_MOD_QUOTATAB
|
||||||
bool "mod_quotatab support"
|
bool "mod_quotatab support"
|
||||||
help
|
help
|
||||||
|
@ -47,6 +47,11 @@ ifeq ($(BR2_PACKAGE_PROFTPD_MOD_SQL),y)
|
|||||||
PROFTPD_MODULES += mod_sql
|
PROFTPD_MODULES += mod_sql
|
||||||
endif
|
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)
|
ifeq ($(BR2_PACKAGE_PROFTPD_MOD_QUOTATAB),y)
|
||||||
PROFTPD_MODULES += mod_quotatab
|
PROFTPD_MODULES += mod_quotatab
|
||||||
endif
|
endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user