Merge pull request #2446 from jow-/CVE-2016-2381
[feed/packages.git] / net / aria2 / Config.in
1 menu "Aria2 configuration"
2 depends on PACKAGE_aria2
3
4 choice
5 prompt "SSL library"
6 default ARIA2_OPENSSL
7
8 config ARIA2_OPENSSL
9 bool "OpenSSL"
10
11 config ARIA2_GNUTLS
12 bool "GNUTLS"
13
14 config ARIA2_NOSSL
15 bool "No SSL support"
16
17 endchoice
18
19 config ARIA2_BITTORRENT
20 bool "Enable bittorrent support"
21 depends on ARIA2_OPENSSL
22 default n
23
24 config ARIA2_METALINK
25 bool "Enable metalink support"
26 default n
27
28 config ARIA2_SFTP
29 bool "Enable sftp support"
30 default n
31
32 choice
33 prompt "XML library"
34 default ARIA2_EXPAT
35 depends on ARIA2_METALINK
36
37 config ARIA2_EXPAT
38 bool "EXPAT"
39
40 config ARIA2_LIBXML2
41 bool "LIBXML2"
42
43 endchoice
44
45 endmenu