mirror of
https://github.com/openwrt/packages.git
synced 2025-12-23 05:54:33 +04:00
54 lines
795 B
Plaintext
54 lines
795 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_SFTP
|
|
bool "Enable SFTP Support"
|
|
default n
|
|
|
|
config ARIA2_ASYNC_DNS
|
|
bool "Enable Async DNS Support"
|
|
default n
|
|
|
|
config ARIA2_COOKIE
|
|
bool "Enable Firefox3/Chromium Cookie Support"
|
|
default n
|
|
|
|
config ARIA2_METALINK
|
|
bool "Enable Metalink Support"
|
|
default n
|
|
|
|
choice
|
|
prompt "XML Library"
|
|
default ARIA2_LIBXML2
|
|
depends on ARIA2_METALINK
|
|
|
|
config ARIA2_LIBXML2
|
|
bool "LIBXML2"
|
|
|
|
config ARIA2_EXPAT
|
|
bool "EXPAT"
|
|
|
|
endchoice
|
|
|
|
endmenu
|