From 9d142a7f523f89cd65bef2cd6ce75e4f4500711b Mon Sep 17 00:00:00 2001 From: Chong Lu Date: Tue, 8 Apr 2014 13:32:01 +0800 Subject: libx11: fix invalid preprocessing directive errors Backport the patch to fix invalid preprocessing directive errors. nls: always use XCOMM instead of # for comments in Compose.pre files [YOCTO #6116] Signed-off-by: Chong Lu Signed-off-by: Richard Purdie --- ...use-XCOMM-instead-of-for-comments-in-Comp.patch | 101 +++++++++++++++++++++ meta/recipes-graphics/xorg-lib/libx11_1.6.2.bb | 1 + 2 files changed, 102 insertions(+) create mode 100644 meta/recipes-graphics/xorg-lib/libx11/nls-always-use-XCOMM-instead-of-for-comments-in-Comp.patch (limited to 'meta/recipes-graphics/xorg-lib') diff --git a/meta/recipes-graphics/xorg-lib/libx11/nls-always-use-XCOMM-instead-of-for-comments-in-Comp.patch b/meta/recipes-graphics/xorg-lib/libx11/nls-always-use-XCOMM-instead-of-for-comments-in-Comp.patch new file mode 100644 index 0000000000..b7f5356e6c --- /dev/null +++ b/meta/recipes-graphics/xorg-lib/libx11/nls-always-use-XCOMM-instead-of-for-comments-in-Comp.patch @@ -0,0 +1,101 @@ +Upstream-Status: Backport + +Signed-off-by: Chong Lu + +From b64bee2ddb7b96f00713a8b8435f11ad9ac1c9e0 Mon Sep 17 00:00:00 2001 +From: Ran Benita +Date: Sun, 16 Feb 2014 15:24:58 +0200 +Subject: [PATCH] nls: always use XCOMM instead of # for comments in + Compose.pre files + +Lines starting with # are considered as preprocessor directives in the +.pre files. + +Fixes warnings like: +:3:0: error: invalid preprocessing directive #Khmer + +Signed-off-by: Ran Benita +Signed-off-by: James Cloos +--- + nls/km_KH.UTF-8/Compose.pre | 2 +- + nls/sr_CS.UTF-8/Compose.pre | 32 ++++++++++++++++---------------- + 2 files changed, 17 insertions(+), 17 deletions(-) + +diff --git a/nls/km_KH.UTF-8/Compose.pre b/nls/km_KH.UTF-8/Compose.pre +index 77651d0..dc89119 100644 +--- a/nls/km_KH.UTF-8/Compose.pre ++++ b/nls/km_KH.UTF-8/Compose.pre +@@ -1,6 +1,6 @@ + include "X11_LOCALEDATADIR/en_US.UTF-8/Compose" + +-# Khmer digraphs ++XCOMM Khmer digraphs + : "ាំ" + : "ោះ" + : "េះ" +diff --git a/nls/sr_CS.UTF-8/Compose.pre b/nls/sr_CS.UTF-8/Compose.pre +index 119e23e..b2397f7 100644 +--- a/nls/sr_CS.UTF-8/Compose.pre ++++ b/nls/sr_CS.UTF-8/Compose.pre +@@ -1,17 +1,17 @@ + include "X11_LOCALEDATADIR/en_US.UTF-8/Compose" + +-# Serbian accented Cyrillic +-# а А - U+0430, U+0410 Cyrillic_a, Cyrillic_A +-# е Е - U+0435, U+0415 Cyrillic_e, Cyrillic_E +-# о О - U+043E, U+041E Cyrillic_o, Cyrillic_O +-# у У - U+0443, U+0423 Cyrillic_u, Cyrillic_U +-# и И - U+0438, U+0418 Cyrillic_i, Cyrillic_I +-# +-# ̀ - U+0300 , , +-# ́ - U+0301 , , , +-# ̂ - U+0302 , +-# ̏ - U+030F , +-# ̀ - kratkouzlazni, U+0300 , , ++XCOMM Serbian accented Cyrillic ++XCOMM а А - U+0430, U+0410 Cyrillic_a, Cyrillic_A ++XCOMM е Е - U+0435, U+0415 Cyrillic_e, Cyrillic_E ++XCOMM о О - U+043E, U+041E Cyrillic_o, Cyrillic_O ++XCOMM у У - U+0443, U+0423 Cyrillic_u, Cyrillic_U ++XCOMM и И - U+0438, U+0418 Cyrillic_i, Cyrillic_I ++XCOMM ++XCOMM ̀ - U+0300 , , ++XCOMM ́ - U+0301 , , , ++XCOMM ̂ - U+0302 , ++XCOMM ̏ - U+030F , ++XCOMM ̀ - kratkouzlazni, U+0300 , , + : "а̀" + : "а̀" + : "а̀" +@@ -42,7 +42,7 @@ include "X11_LOCALEDATADIR/en_US.UTF-8/Compose" + : "У̀" + : "У̀" + : "У̀" +-# ́ - dugouzlazni, U+0301 , , , ++XCOMM ́ - dugouzlazni, U+0301 , , , + : "а́" + : "а́" + : "а́" +@@ -83,7 +83,7 @@ include "X11_LOCALEDATADIR/en_US.UTF-8/Compose" + : "У́" + : "У́" + : "У́" +-# ̂ - dugosilazni, U+0302 , ++XCOMM ̂ - dugosilazni, U+0302 , + : "а̂" + : "а̂" + : "А̂" +@@ -104,8 +104,8 @@ include "X11_LOCALEDATADIR/en_US.UTF-8/Compose" + : "у̂" + : "У̂" + : "У̂" +-# ̏ - kratkosilazni, U+030F , +-# there's no appropriate dead_doublegrave, so we use these two dead keys ++XCOMM ̏ - kratkosilazni, U+030F , ++XCOMM there's no appropriate dead_doublegrave, so we use these two dead keys + : "а̏" + : "а̏" + : "А̏" +-- +1.7.9.5 + diff --git a/meta/recipes-graphics/xorg-lib/libx11_1.6.2.bb b/meta/recipes-graphics/xorg-lib/libx11_1.6.2.bb index 2377d61c37..700bc3680f 100644 --- a/meta/recipes-graphics/xorg-lib/libx11_1.6.2.bb +++ b/meta/recipes-graphics/xorg-lib/libx11_1.6.2.bb @@ -4,6 +4,7 @@ inherit gettext BBCLASSEXTEND = "native nativesdk" SRC_URI += "file://disable_tests.patch \ + file://nls-always-use-XCOMM-instead-of-for-comments-in-Comp.patch \ " SRC_URI[md5sum] = "c35d6ad95b06635a524579e88622fdb5" -- cgit 1.2.3-korg