1config BR2_PACKAGE_SOFTETHER 2 bool "softether" 3 depends on BR2_TOOLCHAIN_HAS_THREADS 4 depends on BR2_USE_MMU # fork() 5 depends on BR2_USE_WCHAR 6 select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE 7 select BR2_PACKAGE_OPENSSL 8 select BR2_PACKAGE_OPENSSL_FORCE_LIBOPENSSL 9 select BR2_PACKAGE_LIBOPENSSL_ENABLE_DES 10 select BR2_PACKAGE_LIBOPENSSL_ENABLE_MD4 11 select BR2_PACKAGE_LIBOPENSSL_ENABLE_RC4 12 select BR2_PACKAGE_READLINE 13 help 14 The SoftEther Server is a fully integrated implementation of 15 the SSTP, L2TP, L2TPv3, OpenVPN, and IPSec virtual private 16 networking protocols on Linux and several other 17 platforms. It is generally compatible with other 18 implementations by Apple, Cisco, Juniper, Microsoft, et al. 19 20 Convenient Layer-2 and Layer-3 bridging capabilities can 21 connect several branch offices into a single broadcast or 22 routing domain, even behind a NAT or without a static IPv4 23 address. 24 25 In addition to supporting most VPN protocols, the SoftEther 26 Client can penetrate hardened firewalls and captured 27 gateways through HTTPS, DNS, and ICMP exfiltration. 28 29 http://www.softether.org 30 31comment "softether needs a toolchain w/ wchar, threads" 32 depends on BR2_USE_MMU 33 depends on !(BR2_USE_WCHAR && BR2_TOOLCHAIN_HAS_THREADS) 34