package/proftpd: add mod_sftp_sql

update to add mod_sftp_sql for proftpd as a build option
http://www.proftpd.org/docs/contrib/mod_sftp_sql.html

Signed-off-by: Jared Bents <jared.bents@rockwellcollins.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2020.05.x
Jared Bents 2020-02-28 13:47:17 -06:00 committed by Thomas Petazzoni
parent 6e066e919c
commit 2003a003f4
2 changed files with 11 additions and 0 deletions

View File

@ -47,6 +47,13 @@ config BR2_PACKAGE_PROFTPD_MOD_SQL_SQLITE
endif
config BR2_PACKAGE_PROFTPD_MOD_SFTP_SQL
bool "mod_sftp_sql support"
select BR2_PACKAGE_PROFTPD_MOD_SQL
select BR2_PACKAGE_PROFTPD_MOD_SFTP
help
Compile ProFTPD with mod_sftp_sql support
config BR2_PACKAGE_PROFTPD_MOD_QUOTATAB
bool "mod_quotatab support"
help

View File

@ -60,6 +60,10 @@ PROFTPD_MODULES += mod_sql_sqlite
PROFTPD_DEPENDENCIES += sqlite
endif
ifeq ($(BR2_PACKAGE_PROFTPD_MOD_SFTP_SQL),y)
PROFTPD_MODULES += mod_sftp_sql
endif
ifeq ($(BR2_PACKAGE_PROFTPD_MOD_QUOTATAB),y)
PROFTPD_MODULES += mod_quotatab
endif