mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 12:00:52 +00:00
Fix broken jpeg boolean def
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@26943 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
1b11784194
commit
76b074a205
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
2008-10-21 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* Source/NSBitmapImageRep+JPEG.m: Fix broken boolean definition.
|
||||
|
||||
2008-10-20 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Source/GSWindowDecorationView.h,
|
||||
|
|
|
@ -47,6 +47,9 @@
|
|||
/* And another so that boolean is not redefined in jmorecfg.h. */
|
||||
#ifndef HAVE_BOOLEAN
|
||||
#define HAVE_BOOLEAN
|
||||
/* This MUST match the jpeg definition of boolean */
|
||||
typedef int jpeg_boolean;
|
||||
#define boolean jpeg_boolean
|
||||
#endif
|
||||
#endif
|
||||
#include <jpeglib.h>
|
||||
|
|
Loading…
Reference in a new issue