summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2017-12-18 00:38:23 +0000
committerCarl Hetherington <cth@carlh.net>2017-12-18 00:38:23 +0000
commit5d0ac178744ea1636a2dfefd2f743f320526ca60 (patch)
tree4e554f726174d4f410e6abe23567484cf2dca42e /wscript
parentb8883efc8d891ec634ba5587c2d3ca02c71b7cce (diff)
Try to fix build failure with ImageMagick 7 on arch.
Diffstat (limited to 'wscript')
-rw-r--r--wscript23
1 files changed, 23 insertions, 0 deletions
diff --git a/wscript b/wscript
index 30d6fb8d6..39b61c5f9 100644
--- a/wscript
+++ b/wscript
@@ -233,6 +233,29 @@ def configure(conf):
includes=conf.env['INCLUDES_MAGICK'],
define_name='DCPOMATIC_HAVE_MAGICKLIB_NAMESPACE')
+ # See where MagickCore.h is
+ conf.check_cxx(fragment="""
+ #include <magick/MagickCore.h>\n
+ int main() { return 0; }\n
+ """,
+ mandatory=False,
+ msg='Checking for MagickCore.h location',
+ okmsg='magick',
+ errmsg='not magick',
+ includes=conf.env['INCLUDES_MAGICK'],
+ define_name='DCPOMATIC_MAGICKCORE_MAGICK')
+
+ conf.check_cxx(fragment="""
+ #include <MagickCore/MagickCore.h>\n
+ int main() { return 0; }\n
+ """,
+ mandatory=False,
+ msg='Checking for MagickCore.h location',
+ okmsg='MagickCore',
+ errmsg='not MagickCore',
+ includes=conf.env['INCLUDES_MAGICK'],
+ define_name='DCPOMATIC_MAGICKCORE_MAGICKCORE')
+
# libzip
conf.check_cfg(package='libzip', args='--cflags --libs', uselib_store='ZIP', mandatory=True)