X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=wscript;h=138f947e4c5b16e0927b67d31b5585ca4065519c;hb=9a5b74a15a21e4563db6fb083313d0160eb4a12a;hp=ec9eb591433b16d871990c1b3aa10a9002035dcd;hpb=02876f8efc33a2c3e420fb0a629b1b3f563338e2;p=dcpomatic.git diff --git a/wscript b/wscript index ec9eb5914..138f947e4 100644 --- a/wscript +++ b/wscript @@ -3,7 +3,7 @@ import os import sys APPNAME = 'dcpomatic' -VERSION = '1.34pre' +VERSION = '1.35pre' def options(opt): opt.load('compiler_cxx') @@ -185,6 +185,14 @@ 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') + conf.check_cxx(fragment=""" #include \n int main() { boost::signals2::signal x; }\n