1config BR2_PACKAGE_POUND 2 bool "pound" 3 depends on !BR2_STATIC_LIBS 4 depends on BR2_TOOLCHAIN_HAS_THREADS 5 depends on BR2_USE_MMU # fork() 6 select BR2_PACKAGE_OPENSSL 7 select BR2_PACKAGE_OPENSSL_FORCE_LIBOPENSSL 8 help 9 The Pound program is a reverse proxy, load balancer and HTTPS 10 front-end for Web server(s). Pound was developed to enable 11 distributing the load among several Web-servers and to allow 12 for a convenient SSL wrapper for those Web servers that do not 13 offer it natively. 14 15 https://github.com/graygnuorg/pound 16 17comment "pound needs a toolchain w/ dynamic library, threads" 18 depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS 19 depends on BR2_USE_MMU 20