Config.in 748 B

12345678910111213141516171819202122232425
  1. comment "squid needs a toolchain w/ C++, threads, gcc >= 8, host gcc >= 8"
  2. depends on BR2_USE_MMU
  3. depends on BR2_TOOLCHAIN_HAS_ATOMIC
  4. depends on !BR2_INSTALL_LIBSTDCPP || \
  5. !BR2_TOOLCHAIN_HAS_THREADS || \
  6. !BR2_TOOLCHAIN_GCC_AT_LEAST_8 || \
  7. !BR2_HOST_GCC_AT_LEAST_8
  8. config BR2_PACKAGE_SQUID
  9. bool "squid"
  10. depends on BR2_TOOLCHAIN_HAS_ATOMIC
  11. depends on BR2_INSTALL_LIBSTDCPP
  12. depends on BR2_TOOLCHAIN_HAS_THREADS
  13. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_8 # C++17
  14. depends on BR2_HOST_GCC_AT_LEAST_8 # C++17
  15. # needs fork()
  16. depends on BR2_USE_MMU
  17. select BR2_PACKAGE_LIBCAP
  18. select BR2_PACKAGE_LIBTOOL
  19. select BR2_PACKAGE_LIBXML2
  20. help
  21. Caching proxy for the Web supporting HTTP, HTTPS, FTP, and
  22. more.
  23. http://www.squid-cache.org/