]> git.eshelyaron.com Git - emacs.git/commitdiff
Do not use ImageMagick 7 and later
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 24 Jul 2017 22:13:26 +0000 (15:13 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 24 Jul 2017 22:14:32 +0000 (15:14 -0700)
Suggested by Glenn Morris (Bug#25967#15).
* configure.ac (IMAGEMAGICK_MODULE): Reject 7 and later.

configure.ac

index 5e6dbda2b636e43d4f3a6018c5b76b8835e31868..648da9939da9045a9311dc48101ac524d3c8a7a1 100644 (file)
@@ -2507,7 +2507,8 @@ if test "${HAVE_X11}" = "yes" || test "${HAVE_NS}" = "yes" || test "${HAVE_W32}"
   if test "${with_imagemagick}" != "no"; then
     ## 6.3.5 is the earliest version known to work; see Bug#17339.
     ## 6.8.2 makes Emacs crash; see Bug#13867.
-    IMAGEMAGICK_MODULE="Wand >= 6.3.5 Wand != 6.8.2"
+    ## 7 and later have not been ported to; See Bug#25967.
+    IMAGEMAGICK_MODULE="Wand >= 6.3.5 Wand != 6.8.2 Wand < 7"
     EMACS_CHECK_MODULES([IMAGEMAGICK], [$IMAGEMAGICK_MODULE])
 
     if test $HAVE_IMAGEMAGICK = yes; then