From 869aced83bd574e49c466ae8c112084da3a583b3 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 2 Mar 2023 12:42:28 +0100 Subject: [PATCH] debug --- wscript | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/wscript b/wscript index 54b96563..2ca4b51a 100644 --- a/wscript +++ b/wscript @@ -227,6 +227,15 @@ def configure(conf): lib=['boost_date_time%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix], uselib_store='BOOST_DATETIME') + conf.check_cxx(fragment=""" + #include \n + int main() { std::locale::global (boost::locale::generator().generate ("")); }\n + """, + msg='Checking for boost locale library', + libpath='/usr/local/lib', + lib=['boost_locale%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix], + uselib_store='BOOST_LOCALE') + if not conf.env.DISABLE_TESTS: conf.recurse('test') if conf.options.enable_gcov: -- 2.30.2