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