Config.in 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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............................. proxy and web cache modules"
  29. config ADK_PACKAGE_SQUID_MOD_BASIC_AUTH_GETPWNAM
  30. prompt "squid-mod-basic-auth-getpwnam....... getpwnam basic authentication helper"
  31. tristate
  32. depends on ADK_PACKAGE_SQUID
  33. help
  34. Password basic authentication helper
  35. config ADK_PACKAGE_SQUID_MOD_BASIC_AUTH_NCSA
  36. prompt "squid-mod-basic-auth-ncsa........... NCSA basic authentication helper"
  37. tristate
  38. depends on ADK_PACKAGE_SQUID
  39. help
  40. NCSA basic authentication helper
  41. config ADK_PACKAGE_SQUID_MOD_BASIC_AUTH_SMB
  42. prompt "squid-mod-basic-auth-smb............ Samba basic authentication helper"
  43. tristate
  44. depends on ADK_PACKAGE_SQUID
  45. help
  46. Samba basic authentication helper
  47. config ADK_PACKAGE_SQUID_MOD_DIGEST_AUTH_PASSWORD
  48. prompt "squid-mod-digest-auth-password...... Password digest authentication ehlper"
  49. tristate
  50. depends on ADK_PACKAGE_SQUID
  51. help
  52. Password digest authentication helper
  53. config ADK_PACKAGE_SQUID_MOD_EXTERNAL_ACL_IP_USER
  54. prompt "squid-mod-external-acl-ip_user...... IP user external ACL helper"
  55. tristate
  56. depends on ADK_PACKAGE_SQUID
  57. help
  58. IP user external ACL helper
  59. config ADK_PACKAGE_SQUID_MOD_EXTERNAL_ACL_UNIX_GROUP
  60. prompt "squid-mod-external-acl-unix-group... Unix group external ACL helper"
  61. tristate
  62. depends on ADK_PACKAGE_SQUID
  63. help
  64. Unix group external ACL helper
  65. config ADK_PACKAGE_SQUID_MOD_NTLM_AUTH_FAKEAUTH
  66. prompt "squid-mod-ntlm-auth-fakeauth........ Fakeauth NTLM authentication helper"
  67. tristate
  68. depends on ADK_PACKAGE_SQUID
  69. help
  70. Fakeauth NTLM authentication helper
  71. config ADK_PACKAGE_SQUID_MOD_NTLM_AUTH_SMB_AUTH
  72. prompt "squid-mod-ntlm-auth-smb-auth........ Samba NTLM authentication helper"
  73. tristate
  74. depends on ADK_PACKAGE_SQUID
  75. help
  76. Samba NTLM authentication helper
  77. endmenu