summaryrefslogtreecommitdiffstats
path: root/package/icu/icu-both-elif-no-arguments.patch
diff options
context:
space:
mode:
authorGustavo Zacarias <gustavo@zacarias.com.ar>2010-12-22 09:04:05 -0300
committerPeter Korsgaard <jacmet@sunsite.dk>2010-12-22 23:45:17 +0100
commit84241e949901b2e014c92ad55303de7796820bc2 (patch)
treea579319e393dd85fe1f52b49946986607028662c /package/icu/icu-both-elif-no-arguments.patch
parentff354debfa6391cf5762519652cb6cac27bc96f3 (diff)
downloadbuildroot-novena-84241e949901b2e014c92ad55303de7796820bc2.tar.gz
buildroot-novena-84241e949901b2e014c92ad55303de7796820bc2.zip
icu: convert to autotargets and bump to version 4.4.2
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/icu/icu-both-elif-no-arguments.patch')
-rw-r--r--package/icu/icu-both-elif-no-arguments.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/package/icu/icu-both-elif-no-arguments.patch b/package/icu/icu-both-elif-no-arguments.patch
deleted file mode 100644
index 8941c53b1..000000000
--- a/package/icu/icu-both-elif-no-arguments.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-[PATCH] icu: fix #elif without arguments
-
-ParagraphLayout.cpp contains an #elif without any arguments, which
-g++ >= 4.4 flags as an error. Fix it by replacing it with an #else.
-
-Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
----
- source/layoutex/ParagraphLayout.cpp | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-Index: source/layoutex/ParagraphLayout.cpp
-===================================================================
---- source.orig/layoutex/ParagraphLayout.cpp
-+++ source/layoutex/ParagraphLayout.cpp
-@@ -813,7 +813,7 @@ le_int32 ParagraphLayout::getLanguageCod
-
- return nullLanguageCode;
- }
--#elif
-+#else
-
- // TODO - dummy implementation for right now...
- le_int32 ParagraphLayout::getLanguageCode(const Locale *locale)