Config.in 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. config ADK_PACKAGE_SQUID
  2. prompt "squid............................. full-featured Web proxy cache"
  3. tristate
  4. default n
  5. select ADK_PACKAGE_LIBOPENSSL
  6. help
  7. Squid is a high-performance proxy caching server for web clients,
  8. supporting FTP, gopher, and HTTP data objects. Unlike traditional
  9. caching software, Squid handles all requests in a single,
  10. non-blocking, I/O-driven process.
  11. http://www.squid-cache.org
  12. choice
  13. prompt "C++ library to use"
  14. depends on ADK_PACKAGE_SQUID
  15. default ADK_COMPILE_SQUID_WITH_STDCXX if ADK_TARGET_LIB_GLIBC || ADK_TARGET_LIB_EGLIBC
  16. default ADK_COMPILE_SQUID_WITH_UCLIBCXX if ADK_TARGET_LIB_UCLIBC
  17. config ADK_COMPILE_SQUID_WITH_STDCXX
  18. bool "Standard C++ library"
  19. select ADK_PACKAGE_LIBSTDCXX
  20. help
  21. config ADK_COMPILE_SQUID_WITH_UCLIBCXX
  22. bool "Embedded uClibc++ library"
  23. select ADK_PACKAGE_UCLIBCXX
  24. help
  25. endchoice
  26. menu "squid............................. proxy and web cache modules"
  27. config ADK_PACKAGE_SQUID_MOD_BASIC_AUTH_GETPWNAM
  28. prompt "squid-mod-basic-auth-getpwnam....... getpwnam basic authentication helper"
  29. tristate
  30. depends on ADK_PACKAGE_SQUID
  31. help
  32. Password basic authentication helper
  33. config ADK_PACKAGE_SQUID_MOD_BASIC_AUTH_NCSA
  34. prompt "squid-mod-basic-auth-ncsa........... NCSA basic authentication helper"
  35. tristate
  36. depends on ADK_PACKAGE_SQUID
  37. help
  38. NCSA basic authentication helper
  39. config ADK_PACKAGE_SQUID_MOD_BASIC_AUTH_SMB
  40. prompt "squid-mod-basic-auth-smb............ Samba basic authentication helper"
  41. tristate
  42. depends on ADK_PACKAGE_SQUID
  43. help
  44. Samba basic authentication helper
  45. config ADK_PACKAGE_SQUID_MOD_DIGEST_AUTH_PASSWORD
  46. prompt "squid-mod-digest-auth-password...... Password digest authentication ehlper"
  47. tristate
  48. depends on ADK_PACKAGE_SQUID
  49. help
  50. Password digest authentication helper
  51. config ADK_PACKAGE_SQUID_MOD_EXTERNAL_ACL_IP_USER
  52. prompt "squid-mod-external-acl-ip_user...... IP user external ACL helper"
  53. tristate
  54. depends on ADK_PACKAGE_SQUID
  55. help
  56. IP user external ACL helper
  57. config ADK_PACKAGE_SQUID_MOD_EXTERNAL_ACL_UNIX_GROUP
  58. prompt "squid-mod-external-acl-unix-group... Unix group external ACL helper"
  59. tristate
  60. depends on ADK_PACKAGE_SQUID
  61. help
  62. Unix group external ACL helper
  63. config ADK_PACKAGE_SQUID_MOD_NTLM_AUTH_FAKEAUTH
  64. prompt "squid-mod-ntlm-auth-fakeauth........ Fakeauth NTLM authentication helper"
  65. tristate
  66. depends on ADK_PACKAGE_SQUID
  67. help
  68. Fakeauth NTLM authentication helper
  69. config ADK_PACKAGE_SQUID_MOD_NTLM_AUTH_SMB_AUTH
  70. prompt "squid-mod-ntlm-auth-smb-auth........ Samba NTLM authentication helper"
  71. tristate
  72. depends on ADK_PACKAGE_SQUID
  73. help
  74. Samba NTLM authentication helper
  75. endmenu