Mercurial > hg > xemacs-beta
diff src/glyphs-x.c @ 6:27bc7f280385 r19-15b4
Import from CVS: tag r19-15b4
author | cvs |
---|---|
date | Mon, 13 Aug 2007 08:47:15 +0200 |
parents | ac2d302a0011 |
children | 4b173ad71786 |
line wrap: on
line diff
--- a/src/glyphs-x.c Mon Aug 13 08:46:57 2007 +0200 +++ b/src/glyphs-x.c Mon Aug 13 08:47:15 2007 +0200 @@ -1050,6 +1050,9 @@ #include "jpeglib.h" #include "jerror.h" +/* The in-core jpeg code doesn't work, so I'm avoiding it for now. -sb */ +#define USE_TEMP_FILES_FOR_JPEG_IMAGES 1 + static void jpeg_validate (Lisp_Object instantiator) { @@ -1269,7 +1272,7 @@ unwind.dpy = dpy; record_unwind_protect (jpeg_instantiate_unwind, make_opaque_ptr (&unwind)); -#ifdef USE_TEMP_FILES_FOR_IMAGES +#ifdef USE_TEMP_FILES_FOR_JPEG_IMAGES /* Step 0: Write out to a temp file. The JPEG routines require you to read from a file unless @@ -1325,7 +1328,7 @@ /* Step 2: specify data source (eg, a file) */ -#ifdef USE_FILEIO_FOR_IMAGES +#ifdef USE_TEMP_FILES_FOR_JPEG_IMAGES jpeg_stdio_src (&cinfo, unwind.instream); #else {