summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorphilip <me@filou.se>2019-07-18 10:56:50 +0200
committerphilip <me@filou.se>2019-07-18 10:56:50 +0200
commitead391e9f08b280d113aeb40c00df3fd3bb766a5 (patch)
treed388b2c97d3c415821aa00acf6184a615980efb0 /wscript
parente7647175268369b28e96d061dfcd4a3c2a39944d (diff)
added missing configure message for +MAGICK
Diffstat (limited to 'wscript')
-rw-r--r--wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/wscript b/wscript
index d35f0034..8084f354 100644
--- a/wscript
+++ b/wscript
@@ -115,7 +115,7 @@ def configure(conf):
# ImageMagick / GraphicsMagick
if distutils.spawn.find_executable('Magick++-config'):
- conf.check_cfg(package='', path='Magick++-config', args='--cppflags --cxxflags --libs', uselib_store='MAGICK', mandatory=True)
+ conf.check_cfg(package='', path='Magick++-config', args='--cppflags --cxxflags --libs', uselib_store='MAGICK', mandatory=True, msg='Checking for ImageMagick/GraphicsMagick')
else:
image = conf.check_cfg(package='ImageMagick++', args='--cflags --libs', uselib_store='MAGICK', mandatory=False)
graphics = conf.check_cfg(package='GraphicsMagick++', args='--cflags --libs', uselib_store='MAGICK', mandatory=False)