From 2c2231158e4716463354146754631452b13c4b2e Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Sat, 26 Jan 2002 22:25:06 +0000 Subject: [PATCH] Changed test for INT32 to work with latest Cygwin. But might break other versions :-( This is partial cherry-pick of c72e7103e4161c7e49979dc90674756d022926d9 from the main repository. --- jmorecfg.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jmorecfg.h b/jmorecfg.h index 35dd075..256e0a6 100644 --- a/jmorecfg.h +++ b/jmorecfg.h @@ -174,7 +174,7 @@ typedef short INT16; #elif (_MSC_VER >= 1200) || (__BORLANDC__ >= 0x550) \ || wxCHECK_W32API_VERSION( 0, 5 ) \ || ((defined(__MINGW32__) || defined(__CYGWIN__)) \ - && ((__GNUC__>2) || ((__GNUC__==2) && (__GNUC_MINOR__>95)))) \ + && ((__GNUC__>2) || ((__GNUC__==2) && (__GNUC_MINOR__>=95)))) \ || (defined(__MWERKS__) && defined(__WXMSW__)) /* INT32 is defined in windows.h for these compilers */