1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2025-04-03 18:00:08 +03:00

Mayaqua: Fix compilation with external iconv

This small modification is needed for external iconv. This patch is carried in OpenWrt.
This commit is contained in:
Rosen Penev 2019-11-26 14:31:14 -08:00 committed by GitHub
parent 3a309c9f6e
commit 3628d3fc9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -59,7 +59,7 @@ if(UNIX)
find_package(ZLIB REQUIRED) find_package(ZLIB REQUIRED)
# In some cases libiconv is not included in libc # In some cases libiconv is not included in libc
find_library(LIB_ICONV iconv) find_library(LIB_ICONV iconv HINTS "${ICONV_LIB_PATH}")
find_library(LIB_RT rt) find_library(LIB_RT rt)