Config.in 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. menu "Configuration"
  2. depends on PACKAGE_libcurl
  3. choice
  4. prompt "SSL library"
  5. default LIBCURL_POLARSSL
  6. config LIBCURL_POLARSSL
  7. bool "PolarSSL"
  8. config LIBCURL_CYASSL
  9. bool "CyaSSL"
  10. config LIBCURL_AXTLS
  11. bool "axTLS"
  12. config LIBCURL_OPENSSL
  13. bool "OpenSSL"
  14. config LIBCURL_GNUTLS
  15. bool "GNUTLS"
  16. config LIBCURL_NOSSL
  17. bool "No SSL support"
  18. endchoice
  19. config LIBCURL_COOKIES
  20. bool "Enable cookies support"
  21. default y
  22. config LIBCURL_CRYPTO_AUTH
  23. bool "Enable cryptographic authentication"
  24. default n
  25. config LIBCURL_DICT
  26. bool "Enable DICT support"
  27. default n
  28. config LIBCURL_FILE
  29. bool "Enable FILE support"
  30. default y
  31. config LIBCURL_FTP
  32. bool "Enable FTP support"
  33. default y
  34. config LIBCURL_GOPHER
  35. bool "Enable Gopher support"
  36. default n
  37. config LIBCURL_HTTP
  38. bool "Enable HTTP support"
  39. default y
  40. config LIBCURL_IMAP
  41. bool "Enable IMAP support"
  42. default n
  43. config LIBCURL_LDAP
  44. bool "Enable LDAP support"
  45. default n
  46. config LIBCURL_LDAPS
  47. bool "Enable LDAPS support"
  48. default n
  49. config LIBCURL_LIBCURL_OPTION
  50. bool "Enable --libcurl C code generation support"
  51. default n
  52. config LIBCURL_POP3
  53. bool "Enable POP3 support"
  54. default n
  55. config LIBCURL_PROXY
  56. bool "Enable proxy support"
  57. default n
  58. config LIBCURL_RTSP
  59. bool "Enable RTSP support"
  60. default n
  61. config LIBCURL_SMTP
  62. bool "Enable SMTP support"
  63. default n
  64. config LIBCURL_SSPI
  65. bool "Enable SSPI"
  66. default n
  67. config LIBCURL_TELNET
  68. bool "Enable TELNET support"
  69. default n
  70. config LIBCURL_TFTP
  71. bool "Enable TFTP support"
  72. default n
  73. config LIBCURL_THREADED_RESOLVER
  74. bool "Enable threaded resolver"
  75. default n
  76. config LIBCURL_TLS-SRP
  77. bool "Enable TLS-SRP authentication"
  78. default n
  79. config LIBCURL_ZLIB
  80. bool "Use zlib"
  81. default n
  82. endmenu