./0000775000175000017500000000000012511411357011435 5ustar nielsenrnielsenr./icu-pkgdata-large-cmd.patch0000664000175000017500000000160012511411357016475 0ustar nielsenrnielsenrpkgdata.cpp: use LARGE_BUFFER_MAX_SIZE for cmd Use LARGE_BUFFER_MAX_SIZE for cmd rather than SMALL_BUFFER_MAX_SIZE, otherwise there was a Segmentation fault error when the command line is long, this should be a misplay since other cmd uses LARGE_BUFFER_MAX_SIZE. Upstream-Status: Pending Signed-off-by: Robert Yang --- tools/pkgdata/pkgdata.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/pkgdata/pkgdata.cpp b/tools/pkgdata/pkgdata.cpp --- a/tools/pkgdata/pkgdata.cpp +++ b/tools/pkgdata/pkgdata.cpp @@ -1019,7 +1019,7 @@ normal_symlink_mode: static int32_t pkg_installLibrary(const char *installDir, const char *targetDir, UBool noVersion) { int32_t result = 0; - char cmd[SMALL_BUFFER_MAX_SIZE]; + char cmd[LARGE_BUFFER_MAX_SIZE]; sprintf(cmd, "cd %s && %s %s %s%s%s", targetDir, -- 1.7.10.4 ./0001-Disable-LDFLAGSICUDT-for-Linux.patch0000664000175000017500000000152112511411357020122 0ustar nielsenrnielsenrFrom 0c82d6aa02c08e41b13c83b14782bd7024e25d59 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Sat, 15 Feb 2014 21:06:42 +0000 Subject: [PATCH] Disable LDFLAGSICUDT for Linux Upstream-Status: Inappropriate [ OE Configuration ] Signed-off-by: Khem Raj --- source/config/mh-linux | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/mh-linux b/config/mh-linux index 366f0cc..2689aab 100644 --- a/config/mh-linux +++ b/config/mh-linux @@ -21,7 +21,7 @@ LD_RPATH= -Wl,-zorigin,-rpath,'$$'ORIGIN LD_RPATH_PRE = -Wl,-rpath, ## These are the library specific LDFLAGS -LDFLAGSICUDT=-nodefaultlibs -nostdlib +# LDFLAGSICUDT=-nodefaultlibs -nostdlib ## Compiler switch to embed a library name # The initial tab in the next line is to prevent icu-config from reading it. -- 1.7.10.4