summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2017-12-31 18:59:23 +0000
committerCarl Hetherington <cth@carlh.net>2017-12-31 18:59:23 +0000
commit3b00a59febd1920037cb0a6027b3757edaaaff2b (patch)
tree113a7975f4014e1f722293ad26c17023597f0801 /wscript
parent7ba51b76ef6a04286d94b05171d4c24f55a44d6a (diff)
Try to fix build on OS X.
Diffstat (limited to 'wscript')
-rw-r--r--wscript13
1 files changed, 12 insertions, 1 deletions
diff --git a/wscript b/wscript
index 173eae2d2..652767301 100644
--- a/wscript
+++ b/wscript
@@ -1,5 +1,5 @@
#
-# Copyright (C) 2012-2016 Carl Hetherington <cth@carlh.net>
+# Copyright (C) 2012-2017 Carl Hetherington <cth@carlh.net>
#
# This file is part of DCP-o-matic.
#
@@ -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 <Magick++.h>\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)