525cb6a8fb
Original upstream ended the development of pound 2.8 in 2022: https://groups.google.com/g/pound_proxy/c/O8xaIIODw18 Switch project to use a maintained fork at https://github.com/graygnuorg and remove all patches, they are not needed anymore. Follow the rename of the license file:223b4276ac
Release notes: https://github.com/graygnuorg/pound/blob/master/NEWS This bump includes compatibility with OpenSSL 3.x (since version 4.0) and added optional support for pcre2:a797374f22
Fixes: http://autobuild.buildroot.net/results/1ca/1ca31debd709f634e65492bee0806ca81bcf9ee5/ Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
19 lines
637 B
Plaintext
19 lines
637 B
Plaintext
config BR2_PACKAGE_POUND
|
|
bool "pound"
|
|
depends on !BR2_STATIC_LIBS
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_USE_MMU # fork()
|
|
select BR2_PACKAGE_OPENSSL
|
|
help
|
|
The Pound program is a reverse proxy, load balancer and HTTPS
|
|
front-end for Web server(s). Pound was developed to enable
|
|
distributing the load among several Web-servers and to allow
|
|
for a convenient SSL wrapper for those Web servers that do not
|
|
offer it natively.
|
|
|
|
https://github.com/graygnuorg/pound
|
|
|
|
comment "pound needs a toolchain w/ dynamic library, threads"
|
|
depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_USE_MMU
|