X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=wscript;h=1449853af63574dc26ad070580c7435516f4724e;hb=458aeb6ab1988549f9011654eb18749aa30fd3c8;hp=964dd0b30d9c37820d4296f9475bdcc7403781d3;hpb=3237facca70b74448365c9d89888b05d300e6631;p=dcpomatic.git diff --git a/wscript b/wscript index 964dd0b30..1449853af 100644 --- a/wscript +++ b/wscript @@ -1,5 +1,5 @@ # -# Copyright (C) 2012-2016 Carl Hetherington +# Copyright (C) 2012-2017 Carl Hetherington # # This file is part of DCP-o-matic. # @@ -27,7 +27,7 @@ import distutils.spawn from waflib import Logs, Context APPNAME = 'dcpomatic' -VERSION = '2.11.32' +VERSION = '2.11.33' def options(opt): opt.load('compiler_cxx') @@ -256,6 +256,17 @@ def configure(conf): includes=conf.env['INCLUDES_MAGICK'], define_name='DCPOMATIC_MAGICKCORE_MAGICKCORE') + # See if we have advanced compare() methods in Magick + conf.check_cxx(fragment=""" + #include \n + int main() { Magick::Image a; Magick::Image b; a.compare(b, Magick::RootMeanSquaredErrorMetric); } + """, + mandatory=False, + msg='Checking for advanced compare() method in {Image/Graphics}Magick', + uselib='MAGICK', + define_name='DCPOMATIC_ADVANCED_MAGICK_COMPARE' + ) + # libzip conf.check_cfg(package='libzip', args='--cflags --libs', uselib_store='ZIP', mandatory=True)