Config.in 2.6 KB

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