diff options
| -rw-r--r-- | ChangeLog | 7 | ||||
| -rw-r--r-- | configure.ac | 6 |
2 files changed, 9 insertions, 4 deletions
| @@ -1,3 +1,10 @@ | |||
| 1 | 2014-05-03 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | Require ImageMagick >= 6.3.5, due to PixelSetMagickColor (Bug#17339). | ||
| 4 | * configure.ac (IMAGEMAGICK_MODULE): Bump prereq from 6.2.8 to 6.3.5. | ||
| 5 | A more-complicated fix would be to remove uses of PixelSetMagickColor, | ||
| 6 | introduced in ImageMagick 6.3.5 (Sept. 2007). | ||
| 7 | |||
| 1 | 2014-05-02 Paul Eggert <eggert@cs.ucla.edu> | 8 | 2014-05-02 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 9 | ||
| 3 | Consult libpng-config more consistently (Bug#17339). | 10 | Consult libpng-config more consistently (Bug#17339). |
diff --git a/configure.ac b/configure.ac index ee4826f1574..4fd842817b6 100644 --- a/configure.ac +++ b/configure.ac | |||
| @@ -2225,11 +2225,9 @@ fi | |||
| 2225 | HAVE_IMAGEMAGICK=no | 2225 | HAVE_IMAGEMAGICK=no |
| 2226 | if test "${HAVE_X11}" = "yes" || test "${HAVE_NS}" = "yes" || test "${HAVE_W32}" = "yes"; then | 2226 | if test "${HAVE_X11}" = "yes" || test "${HAVE_NS}" = "yes" || test "${HAVE_W32}" = "yes"; then |
| 2227 | if test "${with_imagemagick}" != "no"; then | 2227 | if test "${with_imagemagick}" != "no"; then |
| 2228 | ## 6.2.8 is the earliest version known to work, but earlier versions | 2228 | ## 6.3.5 is the earliest version known to work; see Bug#17339. |
| 2229 | ## might work - let us know if you find one. | ||
| 2230 | ## 6.0.7 does not work. See bug#7955. | ||
| 2231 | ## 6.8.2 makes Emacs crash; see Bug#13867. | 2229 | ## 6.8.2 makes Emacs crash; see Bug#13867. |
| 2232 | IMAGEMAGICK_MODULE="Wand >= 6.2.8 Wand != 6.8.2" | 2230 | IMAGEMAGICK_MODULE="Wand >= 6.3.5 Wand != 6.8.2" |
| 2233 | PKG_CHECK_MODULES(IMAGEMAGICK, $IMAGEMAGICK_MODULE, HAVE_IMAGEMAGICK=yes, :) | 2231 | PKG_CHECK_MODULES(IMAGEMAGICK, $IMAGEMAGICK_MODULE, HAVE_IMAGEMAGICK=yes, :) |
| 2234 | AC_SUBST(IMAGEMAGICK_CFLAGS) | 2232 | AC_SUBST(IMAGEMAGICK_CFLAGS) |
| 2235 | AC_SUBST(IMAGEMAGICK_LIBS) | 2233 | AC_SUBST(IMAGEMAGICK_LIBS) |