diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/CMakeLists.txt | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 343418668..1f1e987f7 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -292,16 +292,15 @@ else() endif(HAVE_LIBRT) endif(APPLE) - # Prefer local iconv if installed find_library(ICONV_LIBRARY iconv) mark_as_advanced(ICONV_LIBRARY) if (ICONV_LIBRARY) set(PLATFORM_LIBS ${PLATFORM_LIBS} ${ICONV_LIBRARY}) endif() + if (HAIKU) - set(PLATFORM_LIBS ${PLATFORM_LIBS} intl network) + set(PLATFORM_LIBS ${PLATFORM_LIBS} network) endif() - endif() check_include_files(endian.h HAVE_ENDIAN_H) |