You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
795 B

  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_SFTP
  18. bool "Enable SFTP Support"
  19. default n
  20. config ARIA2_ASYNC_DNS
  21. bool "Enable Async DNS Support"
  22. default n
  23. config ARIA2_COOKIE
  24. bool "Enable Firefox3/Chromium Cookie Support"
  25. default n
  26. config ARIA2_METALINK
  27. bool "Enable Metalink Support"
  28. default n
  29. choice
  30. prompt "XML Library"
  31. default ARIA2_LIBXML2
  32. depends on ARIA2_METALINK
  33. config ARIA2_LIBXML2
  34. bool "LIBXML2"
  35. config ARIA2_EXPAT
  36. bool "EXPAT"
  37. endchoice
  38. endmenu