summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-02-03 11:43:14 +0000
committerCarl Hetherington <cth@carlh.net>2016-02-03 19:59:33 +0000
commit14a170698268374fdb59f296661d61828030f352 (patch)
tree82816f11a2a6d30ce5e1c2ecf24f54a5c35b5897 /wscript
parent005dac1a29f748bfe81ff87b15bcf085a4f510a3 (diff)
Various build system / dependency fixes.
Diffstat (limited to 'wscript')
-rw-r--r--wscript10
1 files changed, 9 insertions, 1 deletions
diff --git a/wscript b/wscript
index 335162fc..5f635888 100644
--- a/wscript
+++ b/wscript
@@ -20,7 +20,7 @@ import subprocess
import os
import sys
import distutils.spawn
-from waflib import Logs
+from waflib import Logs, Context
APPNAME = 'libdcp'
VERSION = '1.2.10devel'
@@ -82,6 +82,7 @@ def configure(conf):
conf.check_cfg(package='libopenjp2', args='--cflags', atleast_version='2.1.0', uselib_store='OPENJPEG', mandatory=True)
conf.env.STLIB_OPENJPEG = ['openjp2']
conf.env.HAVE_CXML = 1
+ conf.env.LIB_CXML = ['xml++-2.6', 'glibmm-2.4']
conf.env.STLIB_CXML = ['cxml']
conf.check_cfg(package='libasdcp-cth', atleast_version='0.0.1', args='--cflags', uselib_store='ASDCPLIB_CTH', mandatory=True)
conf.env.HAVE_ASDCPLIB_CTH = 1
@@ -145,6 +146,13 @@ def configure(conf):
if not conf.options.disable_gcov:
conf.check(lib='gcov', define_name='HAVE_GCOV', mandatory=False)
+ # libxml++ 2.39.1 and later must be built with -std=c++11
+ libxmlpp_version = conf.cmd_and_log(['pkg-config', '--modversion', 'libxml++-2.6'], output=Context.STDOUT, quiet=Context.BOTH)
+ s = libxmlpp_version.split('.')
+ v = (int(s[0]) << 16) | (int(s[1]) << 8) | int(s[2])
+ if v >= 0x022701:
+ conf.env.append_value('CXXFLAGS', '-std=c++11')
+
def build(bld):
create_version_cc(bld, VERSION)