mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 16:10:48 +00:00
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:
parent
9a5abba61f
commit
e81e2faa26
2 changed files with 13 additions and 0 deletions
|
@ -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.
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue