From 77483e4266aa88eac24f2c00e753f834b3433a78 Mon Sep 17 00:00:00 2001 From: Artem Pavlenko Date: Fri, 15 Nov 2019 13:55:09 +0000 Subject: [PATCH] Fix `boost_regex compiled with ICU support` check for BOOST_VERSION >= 1_70 --- SConstruct | 1 + 1 file changed, 1 insertion(+) diff --git a/SConstruct b/SConstruct index e224f9ee1..51a65aa64 100644 --- a/SConstruct +++ b/SConstruct @@ -1150,6 +1150,7 @@ int main() return ret def boost_regex_has_icu(context): + context.env.Append(LIBS='icui18n') if env['RUNTIME_LINK'] == 'static': # re-order icu libs to ensure linux linker is happy for lib_name in ['icui18n',env['ICU_LIB_NAME'],'icudata']: