xref: /OK3568_Linux_fs/buildroot/package/squid/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
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