mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2025-07-06 07:44:57 +03:00
Merge pull request #627 from thepyper/master
Merge PR #627: musl support
This commit is contained in:
@ -789,11 +789,11 @@ void InitInternational()
|
||||
d = IconvWideToStrInternal();
|
||||
if (d == (void *)-1)
|
||||
{
|
||||
#ifdef UNIX_MACOS
|
||||
#if defined (UNIX_MACOS) || defined (UNIX_LINUX_MUSL)
|
||||
StrCpy(charset, sizeof(charset), "utf-8");
|
||||
#else // UNIX_MACOS
|
||||
#else // defined (UNIX_MACOS) || defined (UNIX_LINUX_MUSL)
|
||||
StrCpy(charset, sizeof(charset), "EUCJP");
|
||||
#endif // UNIX_MACOS
|
||||
#endif // defined (UNIX_MACOS) || defined (UNIX_LINUX_MUSL)
|
||||
d = IconvWideToStrInternal();
|
||||
if (d == (void *)-1)
|
||||
{
|
||||
|
Reference in New Issue
Block a user