summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-11-29 21:38:08 +0000
committerCarl Hetherington <cth@carlh.net>2013-11-29 21:38:08 +0000
commitbdbb254c18b100f8fa66a3707f6b515309d05685 (patch)
tree44606dda0a79df54f758c278c70df06733b28378 /wscript
parent95f29bc89f860342c100d7609ce5e2e4a138aa8a (diff)
parent747fc9e02cb66fb965e23a4cc0464cf7e8bd743d (diff)
Merge master.
Diffstat (limited to 'wscript')
-rw-r--r--wscript15
1 files changed, 13 insertions, 2 deletions
diff --git a/wscript b/wscript
index 9d2450d34..5276b2843 100644
--- a/wscript
+++ b/wscript
@@ -3,7 +3,7 @@ import os
import sys
APPNAME = 'dcpomatic'
-VERSION = '1.35pre'
+VERSION = '1.38pre'
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.83', args=pkg_config_args(conf), uselib_store='DCP', mandatory=True)
+ conf.check_cfg(package='libdcp', atleast_version='0.85', 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)
@@ -185,6 +185,17 @@ def configure(conf):
lib=['boost_date_time%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
uselib_store='BOOST_DATETIME')
+ # Only Windows versions require boost::locale, which is handy, as it was only introduced in
+ # boost 1.48 and so isn't (easily) available on old Ubuntus.
+ if conf.env.TARGET_WINDOWS:
+ conf.check_cxx(fragment="""
+ #include <boost/locale.hpp>\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 <boost/signals2.hpp>\n
int main() { boost::signals2::signal<void (int)> x; }\n