Config.in 2.7 KB

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