X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=wscript;h=be2f725d8ff147dbd84217d8da0f8bda676f9d38;hb=a2eb23028859906591a6af65c389c250417e0e54;hp=2ab02cb694c1841c83ee74241edc470f9a6d5eb8;hpb=df2d7f2173ede7270735b645420187890ff9bc31;p=dcpomatic.git diff --git a/wscript b/wscript index 2ab02cb69..be2f725d8 100644 --- a/wscript +++ b/wscript @@ -27,7 +27,7 @@ import distutils.spawn from waflib import Logs, Context APPNAME = 'dcpomatic' -VERSION = '2.12.4devel' +VERSION = '2.12.18' def options(opt): opt.load('compiler_cxx') @@ -82,6 +82,7 @@ def configure(conf): '-Wextra', # Remove auto_ptr warnings from libxml++-2.6 '-Wno-deprecated-declarations', + '-Wno-ignored-qualifiers', '-D_FILE_OFFSET_BITS=64']) if conf.options.force_cpp11: @@ -362,11 +363,11 @@ def configure(conf): # libsub if conf.options.static_sub: - conf.check_cfg(package='libsub-1.0', atleast_version='1.3.2', args='--cflags', uselib_store='SUB', mandatory=True) + conf.check_cfg(package='libsub-1.0', atleast_version='1.3.6', 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-1.0'] else: - conf.check_cfg(package='libsub-1.0', atleast_version='1.3.2', args='--cflags --libs', uselib_store='SUB', mandatory=True) + conf.check_cfg(package='libsub-1.0', atleast_version='1.3.6', args='--cflags --libs', uselib_store='SUB', mandatory=True) conf.env.DEFINES_SUB = [f.replace('\\', '') for f in conf.env.DEFINES_SUB] # libxml++