mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-24 22:13:34 +08:00
8b80150d13
Now that the libcap package has a patch that makes it build with kernel headers < 3.0 (which was needed for the host variant of libcap), there is no longer a need to have a dependency on headers >= 3.0 for the target variant of libcap. All reverse dependencies of libcap are handled in this commit, except lxc, which will be handled in a separate commit since it needs some special solution. The build of all those packages has been tested with a toolchain that uses kernel headers 2.6.32, which is the oldest that our default glibc version accepts to use. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
15 lines
347 B
Plaintext
15 lines
347 B
Plaintext
comment "squid needs a toolchain w/ C++"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_INSTALL_LIBSTDCPP
|
|
|
|
config BR2_PACKAGE_SQUID
|
|
bool "squid"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
# needs fork()
|
|
depends on BR2_USE_MMU
|
|
select BR2_PACKAGE_LIBCAP
|
|
help
|
|
Caching proxy for the Web supporting HTTP, HTTPS, FTP, and more.
|
|
|
|
http://www.squid-cache.org/
|