# HG changeset patch # User Jason Rumney # Date 1043544813 0 # Node ID 5ddabc4c81b02aeb24f55a59c7edbe8d10a89176 # Parent 0a4df841f431a124e4b4abad8b2743af02f78991 Added notes for JPEG library. diff -r 0a4df841f431 -r 5ddabc4c81b0 etc/NEWS --- a/etc/NEWS Sun Jan 26 01:26:32 2003 +0000 +++ b/etc/NEWS Sun Jan 26 01:33:33 2003 +0000 @@ -927,10 +927,12 @@ --- ** Some images are now supported on MS Windows. -PBM and XBM images are supported, PNG is supported if the libpng -and zlib headers were available when Emacs was built, and libpng -and zlib DLLs are available at run-time. Other formats which require -external libraries may be similarly supported in future. +PBM and XBM images are supported, PNG is supported if the libpng and +zlib headers were available when Emacs was built, and libpng and zlib +DLLs are available at run-time. Likewise, JPEG is supported if the +jpeg headers were available when Emacs was built, and jpeg.dll is +available at run-time. Other formats which require external +libraries may be similarly supported in future. --- ** Sound is now supported on MS Windows. diff -r 0a4df841f431 -r 5ddabc4c81b0 nt/INSTALL --- a/nt/INSTALL Sun Jan 26 01:26:32 2003 +0000 +++ b/nt/INSTALL Sun Jan 26 01:33:33 2003 +0000 @@ -77,15 +77,18 @@ * Optional image library support - To build Emacs with support for PNG image, the libpng and zlib headers - must be in the include path when the configure script is run. This can - be setup using environment variables, or by specifying --cflags -I... - options on the command-line to configure. The configure script will - report whether it was able to detect the headers. + To build Emacs with support for PNG image, the libpng and zlib + headers must be in the include path when the configure script is + run. Likewise, the jpeg headers must be in the include path for + JPEG support. This can be setup using environment variables, or by + specifying --cflags -I... options on the command-line to + configure.bat. The configure script will report whether it was able + to detect the headers. To use the PNG support, zlib.dll (or zlibd.dll) and libpng.dll (or libpng13.dll, or libpng13d.dll) must be on the PATH or in the same - directory as emacs.exe when Emacs is started. + directory as emacs.exe when Emacs is started. For JPEG support, + jpeg.dll must be on the path or emacs.exe directory. * Building