diff options
| author | Karoly Lorentey | 2005-01-06 15:00:09 +0000 |
|---|---|---|
| committer | Karoly Lorentey | 2005-01-06 15:00:09 +0000 |
| commit | 0feecea9fb7079a2c1fbfee32a992449a22cf478 (patch) | |
| tree | 0826d68e3dc2ce370c7bd4dae7db3cffc3568321 /src/image.c | |
| parent | 17d51b68fb4e7da4f18eff72c589b7ffc4f9c22c (diff) | |
| parent | 1a63439b34c3455a317feda5c271dfdb7af0296b (diff) | |
| download | emacs-0feecea9fb7079a2c1fbfee32a992449a22cf478.tar.gz emacs-0feecea9fb7079a2c1fbfee32a992449a22cf478.zip | |
Merged in changes from CVS trunk.
Patches applied:
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-747
Update from CVS
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-748
Update from CVS
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-749
Update from CVS
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-750
Merge from gnus--rel--5.10
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-751
Update from CVS
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-752
Update from CVS
* miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-78
Merge from emacs--cvs-trunk--0
* miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-79
Update from CVS
* miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-80
Update from CVS
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-278
Diffstat (limited to 'src/image.c')
| -rw-r--r-- | src/image.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/image.c b/src/image.c index 18ffc2db3a4..9c2f6962b6e 100644 --- a/src/image.c +++ b/src/image.c | |||
| @@ -83,16 +83,19 @@ typedef struct w32_bitmap_record Bitmap_Record; | |||
| 83 | 83 | ||
| 84 | #ifdef MAC_OS | 84 | #ifdef MAC_OS |
| 85 | #include "macterm.h" | 85 | #include "macterm.h" |
| 86 | #include <sys/stat.h> | ||
| 86 | #ifndef MAC_OSX | 87 | #ifndef MAC_OSX |
| 87 | #include <alloca.h> | 88 | #include <alloca.h> |
| 89 | #include <sys/param.h> | ||
| 88 | #endif | 90 | #endif |
| 89 | #ifdef MAC_OSX | 91 | #ifdef MAC_OSX |
| 90 | #include <sys/stat.h> | ||
| 91 | #include <QuickTime/QuickTime.h> | 92 | #include <QuickTime/QuickTime.h> |
| 92 | #else /* not MAC_OSX */ | 93 | #else /* not MAC_OSX */ |
| 93 | #include <Windows.h> | 94 | #include <Windows.h> |
| 94 | #include <Gestalt.h> | 95 | #include <Gestalt.h> |
| 95 | #include <TextUtils.h> | 96 | #include <TextUtils.h> |
| 97 | #include <ImageCompression.h> | ||
| 98 | #include <QuickTimeComponents.h> | ||
| 96 | #endif /* not MAC_OSX */ | 99 | #endif /* not MAC_OSX */ |
| 97 | 100 | ||
| 98 | /* MAC_TODO : Color tables on Mac. */ | 101 | /* MAC_TODO : Color tables on Mac. */ |
| @@ -6269,6 +6272,12 @@ jpeg_image_p (object) | |||
| 6269 | #undef HAVE_STDLIB_H | 6272 | #undef HAVE_STDLIB_H |
| 6270 | #endif /* HAVE_STLIB_H */ | 6273 | #endif /* HAVE_STLIB_H */ |
| 6271 | 6274 | ||
| 6275 | #if defined (HAVE_NTGUI) && !defined (__WIN32__) | ||
| 6276 | /* jpeglib.h will define boolean differently depending on __WIN32__, | ||
| 6277 | so make sure it is defined. */ | ||
| 6278 | #define __WIN32__ 1 | ||
| 6279 | #endif | ||
| 6280 | |||
| 6272 | #include <jpeglib.h> | 6281 | #include <jpeglib.h> |
| 6273 | #include <jerror.h> | 6282 | #include <jerror.h> |
| 6274 | #include <setjmp.h> | 6283 | #include <setjmp.h> |