Removed patch 0001, upstream committed a different fix: https://github.com/graygnuorg/pound/pull/17#issuecomment-1757235640 Removed "--with-owner" and "--with-group" configure options: https://github.com/graygnuorg/pound/commit/6537e9c97bce1f84254ada0104f72264406a1d0d Added optional dependency to libxcrypt for glibc needed due to commit: https://github.com/graygnuorg/pound/commit/32c32b248fe99650f3949b7ee7502a2ff5335f24 Updated pcre-related configure options due to commit: https://github.com/graygnuorg/pound/commit/a3d2b9e0d41c2d5c0487dba0ea5d5178cdfae9c7 Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Julien Olivain <ju.o@free.fr>
21 lines
740 B
Plaintext
21 lines
740 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_LIBXCRYPT if BR2_TOOLCHAIN_USES_GLIBC
|
|
select BR2_PACKAGE_OPENSSL
|
|
select BR2_PACKAGE_OPENSSL_FORCE_LIBOPENSSL
|
|
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
|