X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=wscript;h=93dab68232377888a527340c6e36bb1ef71ac337;hb=f4ad61cc3b3192f47c492b3916a0afb27c9b11dd;hp=87999f7de118b3f57e9004fe20d7dd4e6ef82499;hpb=15b8cca90c9135bf49bdfce08ebd10b92e5a4d0b;p=dcpomatic.git diff --git a/wscript b/wscript index 87999f7de..93dab6823 100644 --- a/wscript +++ b/wscript @@ -3,7 +3,7 @@ import os import sys APPNAME = 'dcpomatic' -VERSION = '1.35pre' +VERSION = '1.53pre' def options(opt): opt.load('compiler_cxx') @@ -88,7 +88,7 @@ def configure(conf): # Dependencies which are dynamically linked everywhere except --static # Get libs only when we are dynamically linking - conf.check_cfg(package='libdcp', atleast_version='0.84', args=pkg_config_args(conf), uselib_store='DCP', mandatory=True) + conf.check_cfg(package='libdcp', atleast_version='0.91', args=pkg_config_args(conf), uselib_store='DCP', mandatory=True) # Remove erroneous escaping of quotes from xmlsec1 defines conf.env.DEFINES_DCP = [f.replace('\\', '') for f in conf.env.DEFINES_DCP] conf.check_cfg(package='libcxml', atleast_version='0.08', args=pkg_config_args(conf), uselib_store='CXML', mandatory=True) @@ -196,14 +196,6 @@ def configure(conf): 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() { 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