xref: /OK3568_Linux_fs/buildroot/package/vsftpd/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config BR2_PACKAGE_VSFTPD
2	bool "vsftpd"
3	depends on BR2_USE_MMU # fork()
4	help
5	  vsftpd is an ftp daemon written with security in mind.
6	  http://vsftpd.beasts.org/
7
8if BR2_PACKAGE_VSFTPD
9
10config BR2_PACKAGE_VSFTPD_UTMPX
11	bool "log vsftpd access to utmpx"
12	# musl 1.1.4 has an empty utmpx implementation and no WTMPX_FILE
13	depends on !BR2_TOOLCHAIN_USES_MUSL
14	help
15	  Enable logging of vsftpd access to utmpx.
16	  Note that Buildroot does not generate utmpx by default.
17
18endif
19