aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/term
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/term')
-rw-r--r--lisp/term/w32-win.el14
1 files changed, 13 insertions, 1 deletions
diff --git a/lisp/term/w32-win.el b/lisp/term/w32-win.el
index 892ac9749d6..9690a5a7d75 100644
--- a/lisp/term/w32-win.el
+++ b/lisp/term/w32-win.el
@@ -223,7 +223,19 @@ See the documentation of `create-fontset-from-fontset-spec' for the format.")
223 "libpng13d.dll" "libpng13.dll")) 223 "libpng13d.dll" "libpng13.dll"))
224 '(jpeg "jpeg62.dll" "libjpeg.dll" "jpeg-62.dll" "jpeg.dll") 224 '(jpeg "jpeg62.dll" "libjpeg.dll" "jpeg-62.dll" "jpeg.dll")
225 '(tiff "libtiff3.dll" "libtiff.dll") 225 '(tiff "libtiff3.dll" "libtiff.dll")
226 '(gif "giflib4.dll" "libungif4.dll" "libungif.dll") 226 ;; Versions of giflib 5.0.0 and later changed signatures of
227 ;; several functions used by Emacs, which makes those versions
228 ;; incompatible with previous ones. We select the correct
229 ;; libraries according to the version of giflib we were
230 ;; compiled against. (If we were compiled without GIF support,
231 ;; libgif-version's value is -1.)
232 (if (>= libgif-version 50000)
233 ;; Yes, giflib 5.x uses 6 as the major version of the API,
234 ;; thus "libgif-6.dll" below (giflib 4.x used 5 as the
235 ;; major API version).
236 ;; giflib5.dll is from the lua-files project.
237 '(gif "libgif-6.dll" "giflib5.dll")
238 '(gif "libgif-5.dll" "giflib4.dll" "libungif4.dll" "libungif.dll"))
227 '(svg "librsvg-2-2.dll") 239 '(svg "librsvg-2-2.dll")
228 '(gdk-pixbuf "libgdk_pixbuf-2.0-0.dll") 240 '(gdk-pixbuf "libgdk_pixbuf-2.0-0.dll")
229 '(glib "libglib-2.0-0.dll") 241 '(glib "libglib-2.0-0.dll")