Comment 3 for bug 33806

Revision history for this message
Barry deFreese (bddebian) wrote :

Yes, siptoolbox build-deps on animal-dev. This needs to change to libanimal-dev. However, it still FTBFSs. The first build error can be fixed by changing:
  stat = MogrifyImage(image_info, argc, argv, &image);
to
  stat = MogrifyImage(image_info, argc, argv, &image, &exception);
in src/mogrify_int.c.

However, it then gets an error about Undefined UndefinedCompressionQuality, which I can only find defined in magick/image-private.h. I think this is a problem in configure.ac here:

AC_MSG_CHECKING([name of the default compression quality in IM])
if test x$magick_major_version = x5; then
   AC_DEFINE([MAGICK_DEFAULT_COMPRESSION_QUALITY],
             [DefaultCompressionQuality],
             [The name of the default compression quality in this \
particular ImageMagick setup])
   AC_MSG_RESULT([DefaultCompressionQuality])
else
   AC_DEFINE([MAGICK_DEFAULT_COMPRESSION_QUALITY],
             [UndefinedCompressionQuality],
             [The name of the default compression quality in this \
particular ImageMagick setup])
   AC_MSG_RESULT([UndefinedCompressionQuality])
fi

But I can't get it to work.