mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2025-07-08 00:34:57 +03:00
musl support
Internat.c: fix iconv() with musl by removing unrecognized EUCJP encoding src/CMakeFiles.txt: recognize USE_MUSL=YES environment variable to compile with musl
This commit is contained in:
@ -43,6 +43,9 @@ if(UNIX)
|
||||
|
||||
if(${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
|
||||
add_definitions(-DUNIX_LINUX)
|
||||
if($ENV{USE_MUSL} STREQUAL "YES")
|
||||
add_definitions(-DUNIX_LINUX_MUSL)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
if(${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD")
|
||||
|
Reference in New Issue
Block a user