diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-09-14 16:02:24 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-09-14 16:02:24 +0100 |
| commit | faa3e4b50afaab5d6eb9722eb0da7705d3fddf7e (patch) | |
| tree | 6f9d98618cf83e2fe81922b14fef9182325dc9d7 | |
| parent | 011d9a680b42df959a6773cd8609f25bc286f4e0 (diff) | |
| parent | a9da80198a028c9d19a063d89e7e3e337ffe1a39 (diff) | |
Merge branch 'master' of git.carlh.net:git/libdcp
| -rw-r--r-- | cscript | 2 | ||||
| -rw-r--r-- | wscript | 6 |
2 files changed, 4 insertions, 4 deletions
@@ -1,7 +1,7 @@ import os def dependencies(target): - return (('libcxml', 'f35787e'), ('openjpeg-cdist', '5d8bffd')) + return (('libcxml', 'v0.12.0'), ('openjpeg-cdist', '5d8bffd')) def build(target, options): cmd = './waf configure --prefix=%s' % target.directory @@ -2,7 +2,7 @@ import subprocess import os APPNAME = 'libdcp' -VERSION = '0.101.0devel' +VERSION = '0.104.0devel' def options(opt): opt.load('compiler_cxx') @@ -51,12 +51,12 @@ def configure(conf): } """, msg='Checking for library openjpeg', stlib='openjpeg', uselib_store='OPENJPEG', mandatory=True) - + conf.env.HAVE_CXML = 1 conf.env.STLIB_CXML = ['cxml'] else: conf.check_cfg(package='libopenjpeg', args='--cflags --libs', uselib_store='OPENJPEG', mandatory=True) - conf.check_cfg(package='libcxml', atleast_version='0.11.0', args='--cflags --libs', uselib_store='CXML', mandatory=True) + conf.check_cfg(package='libcxml', atleast_version='0.12.0', args='--cflags --libs', uselib_store='CXML', mandatory=True) if conf.options.target_windows: boost_lib_suffix = '-mt' |
