mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 00:20:38 -09:00
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:6537e9c97bAdded optional dependency to libxcrypt for glibc needed due to commit:32c32b248fUpdated pcre-related configure options due to commit:a3d2b9e0d4Signed-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
|