mirror of
https://git.freebsd.org/ports.git
synced 2025-06-08 14:20:33 -04:00
SoftEther VPN ("SoftEther" means "Software Ethernet") is an open-source cross-platform multi-protocol VPN program, created as an academic project in the University of Tsukuba. Its protocol is very fast and it can be used in very restricted environments, as it's able to transfer packets over DNS and ICMP. A NAT-Traversal function is also available, very useful in case the required ports cannot be opened on the firewall. The supported third party protocols are OpenVPN, L2TP/IPSec and SSTP. This port is a bleeding-edge developer version of SoftEther, not for production use. If you're looking for a solid and stable version, use security/softether (RTM version) or security/softether-devel (stable version) instead. This version is available also on other other than i386/amd64 processors. Users who want to use SoftEther on single board computers such as Raspberry Pi, BeagleBoard or other embedded devices, try this port. WWW: https://www.softether.org
18 lines
709 B
Text
18 lines
709 B
Text
--- src/Mayaqua/CMakeLists.txt.orig 2019-02-03 19:43:50 UTC
|
|
+++ src/Mayaqua/CMakeLists.txt
|
|
@@ -63,14 +63,10 @@ if(UNIX)
|
|
|
|
find_library(LIB_RT rt)
|
|
|
|
- target_link_libraries(mayaqua PRIVATE OpenSSL::SSL OpenSSL::Crypto Threads::Threads ZLIB::ZLIB)
|
|
+ target_link_libraries(mayaqua PRIVATE OpenSSL::SSL OpenSSL::Crypto Threads::Threads ZLIB::ZLIB cpu_features)
|
|
|
|
if (CMAKE_SYSTEM_PROCESSOR MATCHES "^(armv7l|aarch64|s390x)$" OR NOT HAVE_SYS_AUXV)
|
|
add_definitions(-DSKIP_CPU_FEATURES)
|
|
- else()
|
|
- add_subdirectory(3rdparty/cpu_features)
|
|
- set_property(TARGET cpu_features PROPERTY POSITION_INDEPENDENT_CODE ON)
|
|
- target_link_libraries(mayaqua PRIVATE cpu_features)
|
|
endif()
|
|
|
|
if(LIB_RT)
|