X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=wscript;h=be7b0f985df4f141cc84042ac47e4c12b5e191dd;hb=86346ad4f67810e1dadad5d22fbc676b02c7faa7;hp=40ef15f865c95b3f3c8ac309e0726b19cf555c0c;hpb=1ede0607183bed52a0adfa26a513e5857ecf5a70;p=dcpomatic.git diff --git a/wscript b/wscript index 40ef15f86..be7b0f985 100644 --- a/wscript +++ b/wscript @@ -5,7 +5,7 @@ import distutils import distutils.spawn APPNAME = 'dcpomatic' -VERSION = '2.0.24devel' +VERSION = '2.0.41devel' def options(opt): opt.load('compiler_cxx') @@ -61,9 +61,9 @@ def dynamic_openjpeg(conf): conf.check_cfg(package='libopenjpeg', args='--cflags --libs', max_version='1.5.2', mandatory=True) def static_sub(conf): - conf.check_cfg(package='libsub', atleast_version='0.01.0', args='--cflags', uselib_store='SUB', mandatory=True) + conf.check_cfg(package='libsub-1.0', atleast_version='1.0.0', args='--cflags', uselib_store='SUB', mandatory=True) conf.env.DEFINES_SUB = [f.replace('\\', '') for f in conf.env.DEFINES_SUB] - conf.env.STLIB_SUB = ['sub'] + conf.env.STLIB_SUB = ['sub-1.0'] def static_dcp(conf, static_boost, static_xmlpp, static_xmlsec, static_ssh): conf.check_cfg(package='libdcp-1.0', atleast_version='1.0', args='--cflags', uselib_store='DCP', mandatory=True) @@ -96,7 +96,7 @@ def dynamic_dcp(conf): conf.env.DEFINES_DCP = [f.replace('\\', '') for f in conf.env.DEFINES_DCP] def dynamic_sub(conf): - conf.check_cfg(package='libsub', atleast_version='0.01.0', args='--cflags --libs', uselib_store='SUB', mandatory=True) + conf.check_cfg(package='libsub-1.0', atleast_version='1.0.0', args='--cflags --libs', uselib_store='SUB', mandatory=True) conf.env.DEFINES_SUB = [f.replace('\\', '') for f in conf.env.DEFINES_SUB] def dynamic_ssh(conf):