summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/icu/icu
diff options
context:
space:
mode:
authorAlexander Kanavin <alexander.kanavin@linux.intel.com>2016-06-03 12:14:55 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-06-04 14:13:34 +0100
commitd44fcb3a8327223247261342902bfd0898eb9c6c (patch)
tree5f779f2e6b52a3216f5d32c90c81cd11cc7dc705 /meta/recipes-support/icu/icu
parent64e640928603e0297aac8ea13754bd9974fc9b7b (diff)
downloadpoky-d44fcb3a8327223247261342902bfd0898eb9c6c.tar.gz
icu: update to 57.1
Point to the actual license file in the recipe. Drop icu-release-56-1-flagparser-fix.patch, merged upstream. (From OE-Core rev: 91d230dfbfd8acaea16978ee75c7a75549ffde86) Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/icu/icu')
-rw-r--r--meta/recipes-support/icu/icu/icu-release-56-1-flagparser-fix.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/meta/recipes-support/icu/icu/icu-release-56-1-flagparser-fix.patch b/meta/recipes-support/icu/icu/icu-release-56-1-flagparser-fix.patch
deleted file mode 100644
index 1519d84696..0000000000
--- a/meta/recipes-support/icu/icu/icu-release-56-1-flagparser-fix.patch
+++ /dev/null
@@ -1,24 +0,0 @@
1icu: Ticket #11959: pkgdata dies when compiled with lots'o'flags
2
3See: http://bugs.icu-project.org/trac/ticket/11959
4
5The patch avoids premature failure which results in a segfault.
6
7Upstream-Status: Backport of r38081
8Signed-off-by: Mike Crowe <mac@mcrowe.com>
9
10Index: source/tools/toolutil/flagparser.c
11===================================================================
12--- source/tools/toolutil/flagparser.c (revision 38046)
13+++ source/tools/toolutil/flagparser.c (working copy)
14@@ -96,8 +96,8 @@
15 uprv_free(buffer);
16
17 T_FileStream_close(f);
18-
19- if (U_FAILURE(*status)) {
20+
21+ if (U_FAILURE(*status) && *status != U_BUFFER_OVERFLOW_ERROR) {
22 return -1;
23 }
24