Нема описа

12345678910111213141516171819202122232425262728
  1. menu "Aria2 configuration"
  2. depends on PACKAGE_aria2
  3. choice
  4. prompt "SSL library"
  5. default ARIA2_OPENSSL
  6. config ARIA2_OPENSSL
  7. bool "OpenSSL"
  8. config ARIA2_GNUTLS
  9. bool "GNUTLS"
  10. config ARIA2_NOSSL
  11. bool "No SSL support"
  12. endchoice
  13. config ARIA2_BITTORRENT
  14. bool "Enable bittorrent support"
  15. depends on ARIA2_OPENSSL
  16. default n
  17. config ARIA2_METALINK
  18. bool "Enable metalink support"
  19. default N
  20. endmenu