0700188c4c982d1386d5552354981515f2b4e155
[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 choice
29 prompt "XML library"
30 default ARIA2_EXPAT
31 depends on ARIA2_METALINK
32
33 config ARIA2_EXPAT
34 bool "EXPAT"
35
36 config ARIA2_LIBXML2
37 bool "LIBXML2"
38
39 endchoice
40
41 endmenu