1
0

Config.in 638 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. config ARIA2_SFTP
  21. bool "Enable sftp support"
  22. default n
  23. choice
  24. prompt "XML library"
  25. default ARIA2_EXPAT
  26. depends on ARIA2_METALINK
  27. config ARIA2_EXPAT
  28. bool "EXPAT"
  29. config ARIA2_LIBXML2
  30. bool "LIBXML2"
  31. endchoice
  32. endmenu