summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-04-29 18:29:28 +0100
committerCarl Hetherington <cth@carlh.net>2014-04-29 18:29:28 +0100
commitff928fb5ff7a4b267a87a1f59891c79e8b4dad14 (patch)
tree6d75e227f390aca211d26ea13adb8e88f32a98c0 /wscript
parent570625d8a1900698e139e03fdf97604a52371231 (diff)
Bump max libopenjpeg version to 1.5.2 for Arch Linux, since I'm pretty sure there will be no problems.
Diffstat (limited to 'wscript')
-rw-r--r--wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/wscript b/wscript
index 39d43e226..11533f98f 100644
--- a/wscript
+++ b/wscript
@@ -44,12 +44,12 @@ def dynamic_ffmpeg(conf):
def static_openjpeg(conf):
conf.check_cfg(package='libopenjpeg', args='--cflags', atleast_version='1.5.0', uselib_store='OPENJPEG', mandatory=True)
- conf.check_cfg(package='libopenjpeg', args='--cflags', max_version='1.5.1', mandatory=True)
+ conf.check_cfg(package='libopenjpeg', args='--cflags', max_version='1.5.2', mandatory=True)
conf.env.STLIB_OPENJPEG = ['openjpeg']
def dynamic_openjpeg(conf):
conf.check_cfg(package='libopenjpeg', args='--cflags --libs', atleast_version='1.5.0', uselib_store='OPENJPEG', mandatory=True)
- conf.check_cfg(package='libopenjpeg', args='--cflags --libs', max_version='1.5.1', mandatory=True)
+ conf.check_cfg(package='libopenjpeg', args='--cflags --libs', max_version='1.5.2', mandatory=True)
def static_dcp(conf, static_boost, static_xmlpp, static_xmlsec, static_ssh):
conf.check_cfg(package='libdcp', atleast_version='0.92', args='--cflags', uselib_store='DCP', mandatory=True)