Source/NSBitmapImageRep+JPEG.m: Add workaround so that INT32

is not redefined on MingW by jmorecfg.h (Suggestion from Issac
Trotts).


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@22800 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2006-04-19 21:28:51 +00:00
parent 9a5abba61f
commit e81e2faa26
2 changed files with 13 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2006-04-19 Adam Fedor <fedor@gnu.org>
* Source/NSBitmapImageRep+JPEG.m: Add workaround so that INT32
is not redefined on MingW by jmorecfg.h (Suggestion from Issac
Trotts).
2006-04-09 12:28 Gregory John Casamento <greg_casamento@yahoo.com>
* Tools/gopen.m: Streamline gopen code.

View file

@ -36,6 +36,13 @@
#include "AppKit/NSGraphics.h"
#include <jerror.h>
#if defined(__MINGW32__)
/* Hack so that INT32 is not redefined in jmorecfg.h. MingW defines this
as well in basetsd.h */
#ifndef XMD_H
#define XMD_H
#endif
#endif
#include <jpeglib.h>
#include <setjmp.h>