From a3be72b2d56510d0cabb3d66160119da9fa3aac1 Mon Sep 17 00:00:00 2001 From: Oleg Korshul Date: Thu, 29 Oct 2020 12:50:37 +0300 Subject: [PATCH] Fix build for macos --- UnicodeConverter/UnicodeConverter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UnicodeConverter/UnicodeConverter.cpp b/UnicodeConverter/UnicodeConverter.cpp index 167ddf0380..afda16da24 100644 --- a/UnicodeConverter/UnicodeConverter.cpp +++ b/UnicodeConverter/UnicodeConverter.cpp @@ -39,7 +39,7 @@ #include "../DesktopEditor/common/File.h" #if !defined (_WIN32) && !defined (_WIN64) -#if defined (_LINUX) && !defined(__ANDROID__) && !defined(_IOS) +#if defined (_LINUX) && !defined(__ANDROID__) && !defined(_IOS) && !defined(_MAC) #define USE_ICONV #include "iconv.h" #endif