diff options
author | Khem Raj <raj.khem@gmail.com> | 2018-05-10 23:52:49 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-05-15 10:56:50 +0100 |
commit | b1d326b031f11aca76e88d75d9ac79500a14ff00 (patch) | |
tree | 4d6927bf4ddf1b19f5db82e3185371808832cbd9 /meta/recipes-core | |
parent | 1eed078c4a042c3465df65cb8cc9040973422c9b (diff) | |
download | poky-b1d326b031f11aca76e88d75d9ac79500a14ff00.tar.gz |
uninative-tarball: Add libjis and euc-jp gconv files
packages like fontforge-native fail with mysterious errors like
| ../../git/inc/gwwiconv.h:44:21: error: conflicting types for ‘gww_iconv_close’
| #define iconv_close gww_iconv_close
| ^~~~~~~~~~~~~~~
| ../../git/inc/gwwiconv.h:37:13: note: previous declaration of ‘gww_iconv_close’ was here
| extern void gww_iconv_close( gww_iconv_t cd);
| ^~~~~~~~~~~~~~~
The reason behind this is that a check for iconv fails during native
configure run, the check fails because the autoconf test to check for iconv
pokes for these gconv's in test runs before declaring iconv support successful.
Therefore when uninative is active the package fails to build but when
uninative is inactive all works fine. this patch fixes that
(From OE-Core rev: b4f5ed7a8bb2f76ab4a50b3f0073a9d18a51923e)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/meta/uninative-tarball.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-core/meta/uninative-tarball.bb b/meta/recipes-core/meta/uninative-tarball.bb index 38c3a314e1..c38c2a445e 100644 --- a/meta/recipes-core/meta/uninative-tarball.bb +++ b/meta/recipes-core/meta/uninative-tarball.bb | |||
@@ -12,6 +12,8 @@ TOOLCHAIN_HOST_TASK = "\ | |||
12 | nativesdk-glibc-gconv-iso8859-1 \ | 12 | nativesdk-glibc-gconv-iso8859-1 \ |
13 | nativesdk-glibc-gconv-utf-16 \ | 13 | nativesdk-glibc-gconv-utf-16 \ |
14 | nativesdk-glibc-gconv-cp1252 \ | 14 | nativesdk-glibc-gconv-cp1252 \ |
15 | nativesdk-glibc-gconv-euc-jp \ | ||
16 | nativesdk-glibc-gconv-libjis \ | ||
15 | nativesdk-patchelf \ | 17 | nativesdk-patchelf \ |
16 | nativesdk-libxcrypt \ | 18 | nativesdk-libxcrypt \ |
17 | " | 19 | " |