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:
Adam Fedor 2008-10-21 00:55:37 +00:00
parent 1b11784194
commit 76b074a205
2 changed files with 7 additions and 0 deletions

View file

@ -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,

View file

@ -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>