*** ./jmorecfg.h.ORIG Mon Jan 28 15:54:20 2013 --- ./jmorecfg.h Mon Jan 28 16:14:46 2013 *************** *** 252,266 **** * Defining HAVE_BOOLEAN before including jpeglib.h should make it work. */ ! #ifdef HAVE_BOOLEAN #ifndef FALSE /* in case these macros already exist */ #define FALSE 0 /* values of boolean */ #endif #ifndef TRUE #define TRUE 1 - #endif - #else - typedef enum { FALSE = 0, TRUE = 1 } boolean; #endif --- 252,265 ---- * Defining HAVE_BOOLEAN before including jpeglib.h should make it work. */ ! #ifndef boolean ! typedef int boolean; ! #endif #ifndef FALSE /* in case these macros already exist */ #define FALSE 0 /* values of boolean */ #endif #ifndef TRUE #define TRUE 1 #endif