You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-haskell/text-icu/files/text-icu-0.7.0.1-icu.patch

13 lines
394 B

icu-68 disable TRUE/FALSE by default.
--- a/cbits/text_icu.c
+++ b/cbits/text_icu.c
@@ -305,7 +305,7 @@ int32_t __hs_u_strFoldCase(UChar *dest, int32_t destCapacity,
int32_t __hs_u_strCompareIter(UCharIterator *iter1, UCharIterator *iter2)
{
- return u_strCompareIter(iter1, iter2, TRUE);
+ return u_strCompareIter(iter1, iter2, true);
}
UBlockCode __hs_ublock_getCode(UChar32 c)