lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

Config.in (795B)


      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_SFTP
     25         bool "Enable SFTP Support"
     26         default n
     27 
     28 config ARIA2_ASYNC_DNS
     29 	bool "Enable Async DNS Support"
     30 	default n
     31 
     32 config ARIA2_COOKIE
     33 	bool "Enable Firefox3/Chromium Cookie Support"
     34 	default n
     35 
     36 config ARIA2_METALINK
     37 	bool "Enable Metalink Support"
     38 	default n
     39 
     40 choice
     41 	prompt "XML Library"
     42 	default ARIA2_LIBXML2
     43 	depends on ARIA2_METALINK
     44 
     45 config ARIA2_LIBXML2
     46         bool "LIBXML2"
     47 
     48 config ARIA2_EXPAT
     49 	bool "EXPAT"
     50 
     51 endchoice
     52 
     53 endmenu