Config.in 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. config 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. Convenient Layer-2 and Layer-3 bridging capabilities can
  20. connect several branch offices into a single broadcast or
  21. routing domain, even behind a NAT or without a static IPv4
  22. address.
  23. In addition to supporting most VPN protocols, the SoftEther
  24. Client can penetrate hardened firewalls and captured
  25. gateways through HTTPS, DNS, and ICMP exfiltration.
  26. http://www.softether.org
  27. comment "softether needs a toolchain w/ wchar, threads"
  28. depends on BR2_USE_MMU
  29. depends on !(BR2_USE_WCHAR && BR2_TOOLCHAIN_HAS_THREADS)