aboutsummaryrefslogtreecommitdiff
path: root/textproc/hs-pandoc-citeproc/files/extra-patch-icu68
diff options
context:
space:
mode:
Diffstat (limited to 'textproc/hs-pandoc-citeproc/files/extra-patch-icu68')
-rw-r--r--textproc/hs-pandoc-citeproc/files/extra-patch-icu6821
1 files changed, 0 insertions, 21 deletions
diff --git a/textproc/hs-pandoc-citeproc/files/extra-patch-icu68 b/textproc/hs-pandoc-citeproc/files/extra-patch-icu68
deleted file mode 100644
index 8126bf04fba3..000000000000
--- a/textproc/hs-pandoc-citeproc/files/extra-patch-icu68
+++ /dev/null
@@ -1,21 +0,0 @@
-Regressed by https://github.com/unicode-org/icu/commit/c3fe7e09d844
-
-cbits/text_icu.c:308:43: error:
- error: use of undeclared identifier 'TRUE'
- return u_strCompareIter(iter1, iter2, TRUE);
- ^
- |
-308 | return u_strCompareIter(iter1, iter2, TRUE);
- | ^
-
---- text-icu-0.7.0.1/cbits/text_icu.c.orig 2015-01-09 04:58:03 UTC
-+++ text-icu-0.7.0.1/cbits/text_icu.c
-@@ -305,7 +305,7 @@ int32_t __hs_u_strFoldCase(UChar *dest, int32_t destCa
-
- 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)