mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-06-02 11:31:00 +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
83725068d8
commit
2834315e0b
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>
|
2006-04-09 12:28 Gregory John Casamento <greg_casamento@yahoo.com>
|
||||||
|
|
||||||
* Tools/gopen.m: Streamline gopen code.
|
* Tools/gopen.m: Streamline gopen code.
|
||||||
|
|
|
@ -36,6 +36,13 @@
|
||||||
#include "AppKit/NSGraphics.h"
|
#include "AppKit/NSGraphics.h"
|
||||||
|
|
||||||
#include <jerror.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 <jpeglib.h>
|
||||||
|
|
||||||
#include <setjmp.h>
|
#include <setjmp.h>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue