diff options
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | configure.in | 5 | ||||
| -rw-r--r-- | etc/NEWS | 6 |
3 files changed, 12 insertions, 3 deletions
| @@ -1,3 +1,7 @@ | |||
| 1 | 2011-04-12 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * configure.in: Require ImageMagick >= 6.2.8. (Bug#7955) | ||
| 4 | |||
| 1 | 2011-04-09 Paul Eggert <eggert@cs.ucla.edu> | 5 | 2011-04-09 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 6 | ||
| 3 | * lib/allocator.c: New file, automatically generated by gnulib. | 7 | * lib/allocator.c: New file, automatically generated by gnulib. |
diff --git a/configure.in b/configure.in index fef19f27642..3d99873eabb 100644 --- a/configure.in +++ b/configure.in | |||
| @@ -1805,7 +1805,10 @@ fi | |||
| 1805 | HAVE_IMAGEMAGICK=no | 1805 | HAVE_IMAGEMAGICK=no |
| 1806 | if test "${HAVE_X11}" = "yes"; then | 1806 | if test "${HAVE_X11}" = "yes"; then |
| 1807 | if test "${with_imagemagick}" != "no"; then | 1807 | if test "${with_imagemagick}" != "no"; then |
| 1808 | IMAGEMAGICK_MODULE="Wand" | 1808 | ## 6.2.8 is the earliest version known to work, but earlier versions |
| 1809 | ## might work - let us know if you find one. | ||
| 1810 | ## 6.0.7 does not work. See bug#7955. | ||
| 1811 | IMAGEMAGICK_MODULE="Wand >= 6.2.8" | ||
| 1809 | PKG_CHECK_MODULES(IMAGEMAGICK, $IMAGEMAGICK_MODULE, HAVE_IMAGEMAGICK=yes, :) | 1812 | PKG_CHECK_MODULES(IMAGEMAGICK, $IMAGEMAGICK_MODULE, HAVE_IMAGEMAGICK=yes, :) |
| 1810 | AC_SUBST(IMAGEMAGICK_CFLAGS) | 1813 | AC_SUBST(IMAGEMAGICK_CFLAGS) |
| 1811 | AC_SUBST(IMAGEMAGICK_LIBS) | 1814 | AC_SUBST(IMAGEMAGICK_LIBS) |
| @@ -131,8 +131,10 @@ for this. | |||
| 131 | ** ImageMagick support. | 131 | ** ImageMagick support. |
| 132 | It is now possible to use the ImageMagick library to load many new | 132 | It is now possible to use the ImageMagick library to load many new |
| 133 | image formats in Emacs. By default, Emacs links with the ImageMagick | 133 | image formats in Emacs. By default, Emacs links with the ImageMagick |
| 134 | libraries if they are present at build time. To disable this, use | 134 | libraries if they are present at build time. This needs ImageMagick |
| 135 | the configure option `--without-imagemagick'. | 135 | 6.2.8 or newer (versions newer than 6.0.7 _may_ work but have not been |
| 136 | tested). To disable ImageMagick support, use the configure option | ||
| 137 | `--without-imagemagick'. | ||
| 136 | 138 | ||
| 137 | The new function `imagemagick-types' returns a list of image file | 139 | The new function `imagemagick-types' returns a list of image file |
| 138 | extensions that your installation of ImageMagick supports. The | 140 | extensions that your installation of ImageMagick supports. The |