Mercurial > emacs
changeset 79990:4c9e3f8637a0
(image-library-alist): Prefer libpng12 to libpng13, because
the latter is in fact a 1.2.8 build distributed with GTK+
(as of today, the most recent libpng is 1.2.24).
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Fri, 01 Feb 2008 15:16:47 +0000 |
parents | 44b3ea2dbeb3 |
children | 9317a00f6d6d |
files | lisp/term/w32-win.el |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/term/w32-win.el Fri Feb 01 05:51:06 2008 +0000 +++ b/lisp/term/w32-win.el Fri Feb 01 15:16:47 2008 +0000 @@ -1254,7 +1254,9 @@ ;;; Set default known names for image libraries (setq image-library-alist '((xpm "libxpm.dll" "xpm4.dll" "libXpm-nox4.dll") - (png "libpng13d.dll" "libpng13.dll" "libpng12d.dll" "libpng12.dll" "libpng.dll") + (png "libpng12d.dll" "libpng12.dll" "libpng.dll" + ;; these are libpng 1.2.8 from GTK+ + "libpng13d.dll" "libpng13.dll") (jpeg "jpeg62.dll" "libjpeg.dll" "jpeg-62.dll" "jpeg.dll") (tiff "libtiff3.dll" "libtiff.dll") (gif "giflib4.dll" "libungif4.dll" "libungif.dll")))