From e33523eded6ee3f3791af3eba6d424661c60b6f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9F=D0=B5=D0=BB=D0=B8=D0=BF=D0=B5=D0=BD=D0=BA=D0=BE=20?= =?UTF-8?q?=D0=98=D0=B2=D0=B0=D0=BD?= Date: Thu, 31 Oct 2019 11:13:40 +0000 Subject: [PATCH] git-svn-id: svn://db.shs.com.ru/pip@864 12ceb7fc-bf1f-11e4-8940-5bc7170c53b5 --- CMakeLists.txt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6abecb78..e0ff9f99 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,9 +6,14 @@ set(PIP_BUILD 1) include(CheckFunctionExists) include(PIPMacros.cmake) +set(_ICU_DEFAULT ON) +if(APPLE) + set(_ICU_DEFAULT OFF) +endif() + # Options -option(ICU "Unicode support" ON) +option(ICU "Unicode support" ${_ICU_DEFAULT}) option(STD_IOSTREAM "Building with std iostream operators support" OFF) option(INTROSPECTION "Build with introspection" OFF) option(LIB "System install" ON)