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.

71 lines
1.4 KiB

  1. if PACKAGE_squid
  2. comment "Optional features"
  3. config SQUID_enable-ipv6
  4. bool "Enable support for IP version 6"
  5. default y
  6. config SQUID_enable-snmp
  7. bool "Enable SNMP monitoring support"
  8. default n
  9. config SQUID_enable-icmp
  10. bool "Enable ICMP pinging and Network Measurement"
  11. default n
  12. config SQUID_enable-icap-client
  13. bool "Enable ICAP client support"
  14. default n
  15. config SQUID_enable-dlmalloc
  16. bool "Compile & use the malloc package by Doug Lea"
  17. default y
  18. config SQUID_enable-ssl-crtd
  19. bool "Enable dynamic SSL certificate generation "
  20. depends on !SQUID_use-gnutls
  21. default n
  22. config SQUID_auth-basic
  23. bool "Enable the Basic authentication scheme"
  24. default n
  25. config SQUID_auth-digest
  26. bool "Enable the Digest authentication scheme"
  27. default n
  28. config SQUID_auth-negotiate
  29. bool "Enable the Negotiate authentication scheme"
  30. default n
  31. config SQUID_auth-ntlm
  32. bool "Enable the NTLM authentication scheme"
  33. default n
  34. comment "Optional packages"
  35. config SQUID_use-gnutls
  36. bool "Use GnuTLS instead of OpenSSL"
  37. default n
  38. config SQUID_with-libcap
  39. bool "Use libcap - Linux capabilities library"
  40. default n
  41. config SQUID_with-nettle
  42. bool "Use nettle - GNU crypto library"
  43. default n
  44. config SQUID_with-expat
  45. bool "Use expat - XML parsing library"
  46. default n
  47. config SQUID_with-libxml2
  48. bool "Use libxml2 - Gnome XML library"
  49. default n
  50. comment "Additional tools"
  51. endif