diff options
| author | Jan Djärv | 2013-07-08 15:26:13 +0200 |
|---|---|---|
| committer | Jan Djärv | 2013-07-08 15:26:13 +0200 |
| commit | e4b1e5afb4793638ca103cc1ba70c83a8a756e54 (patch) | |
| tree | e18023252d98c9a2c7a5393a001174964bd62b59 /src | |
| parent | 6388fe5e472c9bcfcd89b83c5818e7544502377f (diff) | |
| download | emacs-e4b1e5afb4793638ca103cc1ba70c83a8a756e54.tar.gz emacs-e4b1e5afb4793638ca103cc1ba70c83a8a756e54.zip | |
configure.ac (HAVE_IMAGEMAGICK): Check on NS also.
image.c (imagemagick_load_image): Do not use MagickExportImagePixels
on NS even if it is present. Pixmap on NS is a void*.
Fixes: debbugs:14798
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/image.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 462a246f220..9be0b59ee06 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2013-07-08 Magnus Henoch <magnus.henoch@gmail.com> (tiny change). | ||
| 2 | |||
| 3 | * image.c (imagemagick_load_image): Do not use MagickExportImagePixels | ||
| 4 | on NS even if it is present. Pixmap on NS is a void*. | ||
| 5 | |||
| 1 | 2013-07-07 Paul Eggert <eggert@cs.ucla.edu> | 6 | 2013-07-07 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 7 | ||
| 3 | Port to Ubuntu 10 (Bug#14803). | 8 | Port to Ubuntu 10 (Bug#14803). |
diff --git a/src/image.c b/src/image.c index 7ecd59d27b4..6ef3754e005 100644 --- a/src/image.c +++ b/src/image.c | |||
| @@ -8054,7 +8054,7 @@ imagemagick_load_image (struct frame *f, struct image *img, | |||
| 8054 | 8054 | ||
| 8055 | init_color_table (); | 8055 | init_color_table (); |
| 8056 | 8056 | ||
| 8057 | #ifdef HAVE_MAGICKEXPORTIMAGEPIXELS | 8057 | #if defined(HAVE_MAGICKEXPORTIMAGEPIXELS) && ! defined(HAVE_NS) |
| 8058 | if (imagemagick_render_type != 0) | 8058 | if (imagemagick_render_type != 0) |
| 8059 | { | 8059 | { |
| 8060 | /* Magicexportimage is normally faster than pixelpushing. This | 8060 | /* Magicexportimage is normally faster than pixelpushing. This |