X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=wscript;h=966964d37e396baa22c5ebd65223b8cd38e307d8;hb=3e9fbd806d26b7f9a792d4e11dd0747ae8f8056c;hp=6a44e34e24e2163cea104fec8c9d542ae731194b;hpb=fc487d8428b5cf7b05c5c2586341c714c8e8db32;p=dcpomatic.git diff --git a/wscript b/wscript index 6a44e34e2..966964d37 100644 --- a/wscript +++ b/wscript @@ -26,7 +26,7 @@ import distutils.spawn from waflib import Logs, Context APPNAME = 'dcpomatic' -VERSION = '2.6.30devel' +VERSION = '2.7.5' def options(opt): opt.load('compiler_cxx') @@ -237,21 +237,21 @@ def configure(conf): # libdcp if conf.options.static_dcp: - conf.check_cfg(package='libdcp-1.0', atleast_version='1.3.0', args='--cflags', uselib_store='DCP', mandatory=True) + conf.check_cfg(package='libdcp-1.0', atleast_version='1.3.1', args='--cflags', uselib_store='DCP', mandatory=True) conf.env.DEFINES_DCP = [f.replace('\\', '') for f in conf.env.DEFINES_DCP] conf.env.STLIB_DCP = ['dcp-1.0', 'asdcp-cth', 'kumu-cth', 'openjp2'] conf.env.LIB_DCP = ['glibmm-2.4', 'ssl', 'crypto', 'bz2', 'xslt'] else: - conf.check_cfg(package='libdcp-1.0', atleast_version='1.3.0', args='--cflags --libs', uselib_store='DCP', mandatory=True) + conf.check_cfg(package='libdcp-1.0', atleast_version='1.3.1', args='--cflags --libs', uselib_store='DCP', mandatory=True) conf.env.DEFINES_DCP = [f.replace('\\', '') for f in conf.env.DEFINES_DCP] # libsub if conf.options.static_sub: - conf.check_cfg(package='libsub-1.0', atleast_version='1.1.10', args='--cflags', uselib_store='SUB', mandatory=True) + conf.check_cfg(package='libsub-1.0', atleast_version='1.1.11', 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.1.10', args='--cflags --libs', uselib_store='SUB', mandatory=True) + conf.check_cfg(package='libsub-1.0', atleast_version='1.1.11', args='--cflags --libs', uselib_store='SUB', mandatory=True) conf.env.DEFINES_SUB = [f.replace('\\', '') for f in conf.env.DEFINES_SUB] # libxml++ @@ -307,8 +307,9 @@ def configure(conf): int main () { av_ebur128_get_true_peaks (0); }\n """, msg='Checking for patched FFmpeg', - libpath='/usr/local/lib', - lib=['avfilter'], + libpath=conf.env['LIBPATH_AVFORMAT'], + lib=['avfilter', 'avutil', 'swresample'], + includes=conf.env['INCLUDES_AVFORMAT'], uselib_store='PATCHED_FFMPEG', define_name='DCPOMATIC_HAVE_PATCHED_FFMPEG', mandatory=False)