File gnustep-icu-truefalse.patch of Package gnustep-base.31731
Index: gnustep-base-1.25.1/Source/GSICUString.m =================================================================== --- gnustep-base-1.25.1.orig/Source/GSICUString.m +++ gnustep-base-1.25.1/Source/GSICUString.m @@ -26,6 +26,13 @@ #if GS_USE_ICU == 1 #import "GSICUString.h" +#ifndef FALSE +#define FALSE (1==0) +#endif +#ifndef TRUE +#define TRUE (1==1) +#endif + /** * The number of characters that we use per chunk when fetching a block of * characters at once for iteration. Making this value larger will make UText Index: gnustep-base-1.25.1/Source/NSRegularExpression.m =================================================================== --- gnustep-base-1.25.1.orig/Source/NSRegularExpression.m +++ gnustep-base-1.25.1/Source/NSRegularExpression.m @@ -49,6 +49,13 @@ #import "Foundation/NSUserDefaults.h" #import "Foundation/NSNotification.h" +#ifndef FALSE +#define FALSE (1==0) +#endif +#ifndef TRUE +#define TRUE (1==1) +#endif + /** * To be helpful, Apple decided to define a set of flags that mean exactly the