diff options
| author | Paul Eggert | 2013-03-17 22:26:56 -0700 |
|---|---|---|
| committer | Paul Eggert | 2013-03-17 22:26:56 -0700 |
| commit | 19151a7f8ce7452ff9a4c84aa18dd7de60ce0fc1 (patch) | |
| tree | 7e6f8e5c324c1ac5604c22d25b0b52df97f458d9 | |
| parent | 982efbcdc4b44d595743cf9085ad64731417cde3 (diff) | |
| download | emacs-19151a7f8ce7452ff9a4c84aa18dd7de60ce0fc1.tar.gz emacs-19151a7f8ce7452ff9a4c84aa18dd7de60ce0fc1.zip | |
Emacs crashes with ImageMagick 6.8.2-3 through 6.8.3-9.
* configure.ac (IMAGEMAGICK_MODULE): Reject 6.8.2.
We want to reject 6.8.2-3 through 6.8.3-9, but there seems to be
no way to do this in pkg-config, so make do with a reasonable
approximation.
* etc/PROBLEMS: Mention problem with ImageMagick 6.8.2-3 through 6.8.3-9.
Fixes: debbugs:13867
| -rw-r--r-- | ChangeLog | 6 | ||||
| -rw-r--r-- | configure.ac | 3 | ||||
| -rw-r--r-- | etc/ChangeLog | 5 | ||||
| -rw-r--r-- | etc/PROBLEMS | 4 |
4 files changed, 17 insertions, 1 deletions
| @@ -1,5 +1,11 @@ | |||
| 1 | 2013-03-18 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2013-03-18 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 2 | ||
| 3 | Emacs crashes with ImageMagick 6.8.2-3 through 6.8.3-9 (Bug#13867). | ||
| 4 | * configure.ac (IMAGEMAGICK_MODULE): Reject 6.8.2. | ||
| 5 | We want to reject 6.8.2-3 through 6.8.3-9, but there seems to be | ||
| 6 | no way to do this in pkg-config, so make do with a reasonable | ||
| 7 | approximation. | ||
| 8 | |||
| 3 | Automate the build of ja-dic.el (Bug#13984). | 9 | Automate the build of ja-dic.el (Bug#13984). |
| 4 | * .bzrignore: Add leim/ja-dic/. | 10 | * .bzrignore: Add leim/ja-dic/. |
| 5 | 11 | ||
diff --git a/configure.ac b/configure.ac index 0d1f31032a9..d6c730c5033 100644 --- a/configure.ac +++ b/configure.ac | |||
| @@ -1880,7 +1880,8 @@ if test "${HAVE_X11}" = "yes"; then | |||
| 1880 | ## 6.2.8 is the earliest version known to work, but earlier versions | 1880 | ## 6.2.8 is the earliest version known to work, but earlier versions |
| 1881 | ## might work - let us know if you find one. | 1881 | ## might work - let us know if you find one. |
| 1882 | ## 6.0.7 does not work. See bug#7955. | 1882 | ## 6.0.7 does not work. See bug#7955. |
| 1883 | IMAGEMAGICK_MODULE="Wand >= 6.2.8" | 1883 | ## 6.8.2 makes Emacs crash; see Bug#13867. |
| 1884 | IMAGEMAGICK_MODULE="Wand >= 6.2.8 Wand != 6.8.2" | ||
| 1884 | PKG_CHECK_MODULES(IMAGEMAGICK, $IMAGEMAGICK_MODULE, HAVE_IMAGEMAGICK=yes, :) | 1885 | PKG_CHECK_MODULES(IMAGEMAGICK, $IMAGEMAGICK_MODULE, HAVE_IMAGEMAGICK=yes, :) |
| 1885 | AC_SUBST(IMAGEMAGICK_CFLAGS) | 1886 | AC_SUBST(IMAGEMAGICK_CFLAGS) |
| 1886 | AC_SUBST(IMAGEMAGICK_LIBS) | 1887 | AC_SUBST(IMAGEMAGICK_LIBS) |
diff --git a/etc/ChangeLog b/etc/ChangeLog index dfbefedc323..6eed4c3173a 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2013-03-18 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | Emacs crashes with ImageMagick 6.8.2-3 through 6.8.3-9 (Bug#13867). | ||
| 4 | * PROBLEMS: Mention problem with ImageMagick 6.8.2-3 through 6.8.3-9. | ||
| 5 | |||
| 1 | 2013-03-12 Paul Eggert <eggert@cs.ucla.edu> | 6 | 2013-03-12 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 7 | ||
| 3 | Add coding tags for iso-2022-7bit files that are not already tagged. | 8 | Add coding tags for iso-2022-7bit files that are not already tagged. |
diff --git a/etc/PROBLEMS b/etc/PROBLEMS index b38a1240540..b1d29bdfe36 100644 --- a/etc/PROBLEMS +++ b/etc/PROBLEMS | |||
| @@ -206,6 +206,10 @@ added a line like this at the beginning of files of Lisp code: | |||
| 206 | If your tar has this problem, install GNU tar--if you can manage to | 206 | If your tar has this problem, install GNU tar--if you can manage to |
| 207 | untar it :-). | 207 | untar it :-). |
| 208 | 208 | ||
| 209 | ** Emacs crashes when displaying PNG images with simple (tRNS) transparency. | ||
| 210 | This is due to a bug introduced in ImageMagick 6.8.2-3. The bug | ||
| 211 | should be fixed in ImageMagick 6.8.3-10. Please see Bug#13867. | ||
| 212 | |||
| 209 | ** Crashes when displaying GIF images in Emacs built with version | 213 | ** Crashes when displaying GIF images in Emacs built with version |
| 210 | libungif-4.1.0 are resolved by using version libungif-4.1.0b1. | 214 | libungif-4.1.0 are resolved by using version libungif-4.1.0b1. |
| 211 | Configure checks for the correct version, but this problem could occur | 215 | Configure checks for the correct version, but this problem could occur |