mirror of
https://github.com/novatiq/packages.git
synced 2026-04-28 14:48:39 +01:00
773fe036ee
Signed-off-by: Hsing-Wang Liao <kuoruan@gmail.com>
46 lines
638 B
Plaintext
46 lines
638 B
Plaintext
menu "Aria2 configuration"
|
|
depends on PACKAGE_aria2
|
|
|
|
choice
|
|
prompt "SSL library"
|
|
default ARIA2_OPENSSL
|
|
|
|
config ARIA2_OPENSSL
|
|
bool "OpenSSL"
|
|
|
|
config ARIA2_GNUTLS
|
|
bool "GNUTLS"
|
|
|
|
config ARIA2_NOSSL
|
|
bool "No SSL support"
|
|
|
|
endchoice
|
|
|
|
config ARIA2_BITTORRENT
|
|
bool "Enable bittorrent support"
|
|
depends on ARIA2_OPENSSL
|
|
default n
|
|
|
|
config ARIA2_METALINK
|
|
bool "Enable metalink support"
|
|
default n
|
|
|
|
config ARIA2_SFTP
|
|
bool "Enable sftp support"
|
|
default n
|
|
|
|
choice
|
|
prompt "XML library"
|
|
default ARIA2_EXPAT
|
|
depends on ARIA2_METALINK
|
|
|
|
config ARIA2_EXPAT
|
|
bool "EXPAT"
|
|
|
|
config ARIA2_LIBXML2
|
|
bool "LIBXML2"
|
|
|
|
endchoice
|
|
|
|
endmenu
|