1config BR2_PACKAGE_TINYPROXY 2 bool "tinyproxy" 3 depends on BR2_USE_WCHAR 4 depends on BR2_TOOLCHAIN_HAS_THREADS 5 depends on BR2_USE_MMU # fork() 6 help 7 Tinyproxy is a small, efficient HTTP/SSL proxy daemon released 8 under the GNU General Public License. Tinyproxy is very 9 useful in a small network setting, where a larger proxy would 10 be too resource intensive. 11 12 https://tinyproxy.github.io 13 14comment "tinyproxy needs a toolchain w/ threads, wchar" 15 depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR 16 depends on BR2_USE_MMU 17