icu: bump to version 57.1
0006-fix-Error-allocating-memory-for-pkgDataFlags.-compil.patch is upstream so drop it. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
1696b6d14c
commit
a360174ffa
@ -1,34 +0,0 @@
|
||||
From 212016f27dd581fd7bef1a44a3342c59619a4ec8 Mon Sep 17 00:00:00 2001
|
||||
From: Zoltan Gyarmati <mr.zoltan.gyarmati@gmail.com>
|
||||
Date: Wed, 27 Jan 2016 17:24:25 +0100
|
||||
Subject: [PATCH] fix "Error allocating memory for pkgDataFlags." compilation
|
||||
error
|
||||
|
||||
This is backport of the upstream icu commit 38081
|
||||
(http://bugs.icu-project.org/trac/changeset/38081/icu/trunk), which is
|
||||
a fix to upstream icu bug #11959
|
||||
(http://bugs.icu-project.org/trac/ticket/11959)
|
||||
|
||||
Signed-off-by: Zoltan Gyarmati <mr.zoltan.gyarmati@gmail.com>
|
||||
---
|
||||
source/tools/toolutil/flagparser.c | 4 ++--
|
||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/source/tools/toolutil/flagparser.c b/source/tools/toolutil/flagparser.c
|
||||
index 5543415..57256c3 100644
|
||||
--- a/source/tools/toolutil/flagparser.c
|
||||
+++ b/source/tools/toolutil/flagparser.c
|
||||
@@ -96,8 +96,8 @@ parseFlagsFile_cleanup:
|
||||
uprv_free(buffer);
|
||||
|
||||
T_FileStream_close(f);
|
||||
-
|
||||
- if (U_FAILURE(*status)) {
|
||||
+
|
||||
+ if (U_FAILURE(*status) && *status != U_BUFFER_OVERFLOW_ERROR) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
--
|
||||
1.9.1
|
||||
|
@ -1,4 +1,4 @@
|
||||
# From https://ssl.icu-project.org/files/icu4c/56.1/icu4c-src-56_1.md5
|
||||
md5 c4a2d71ff56aec5ebfab2a3f059be99d icu4c-56_1-src.tgz
|
||||
# From https://ssl.icu-project.org/files/icu4c/57.1/icu4c-src-57_1.md5
|
||||
md5 976734806026a4ef8bdd17937c8898b9 icu4c-57_1-src.tgz
|
||||
# Calculated based on the hash above
|
||||
sha256 3a64e9105c734dcf631c0b3ed60404531bce6c0f5a64bfe1a6402a4cc2314816 icu4c-56_1-src.tgz
|
||||
sha256 ff8c67cb65949b1e7808f2359f2b80f722697048e90e7cfc382ec1fe229e9581 icu4c-57_1-src.tgz
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
ICU_VERSION = 56.1
|
||||
ICU_VERSION = 57.1
|
||||
ICU_SOURCE = icu4c-$(subst .,_,$(ICU_VERSION))-src.tgz
|
||||
ICU_SITE = http://download.icu-project.org/files/icu4c/$(ICU_VERSION)
|
||||
ICU_LICENSE = ICU License
|
||||
|
Loading…
Reference in New Issue
Block a user