c4f39476fd
This patch adds BR2_PACKAGE_PROFTPD_MOD_SFTP support and also changes the .mk file to add required modules as a list in a separate variable. This new variable will help in future to add more module support in proftpd package. Signed-off-by: Paresh Chaudhary <paresh.chaudhary@rockwellcollins.com> Signed-off-by: Matt Weber <matthew.weber@rockwellcollins.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
30 lines
660 B
Plaintext
30 lines
660 B
Plaintext
config BR2_PACKAGE_PROFTPD
|
|
bool "proftpd"
|
|
depends on BR2_USE_MMU # fork()
|
|
help
|
|
ProFTPD, a highly configurable FTP server.
|
|
|
|
http://www.proftpd.org/
|
|
|
|
if BR2_PACKAGE_PROFTPD
|
|
|
|
config BR2_PACKAGE_PROFTPD_MOD_REWRITE
|
|
bool "mod_rewrite support"
|
|
help
|
|
Compile ProFTPD with mod_rewrite support
|
|
|
|
config BR2_PACKAGE_PROFTPD_MOD_REDIS
|
|
bool "mod_redis support"
|
|
select BR2_PACKAGE_HIREDIS
|
|
help
|
|
The mod_redis module enables ProFTPD support for caching
|
|
data in Redis servers, using the hiredis client library.
|
|
|
|
config BR2_PACKAGE_PROFTPD_MOD_SFTP
|
|
bool "mod_sftp support"
|
|
select BR2_PACKAGE_OPENSSL
|
|
help
|
|
Compile ProFTPD with mod_sftp support
|
|
|
|
endif
|