diff options
author | Khem Raj <raj.khem@gmail.com> | 2012-01-09 11:45:02 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-01-10 17:28:28 +0000 |
commit | 80e6f9201ffa3b8f52f6d452c8657ec6fda4749c (patch) | |
tree | c55499d007cf8060eca210f0f046fb015c96b33f /meta/recipes-core/uclibc | |
parent | e48fd42e047f46399828a074c5125a0ce9c3f56f (diff) | |
download | openembedded-core-80e6f9201ffa3b8f52f6d452c8657ec6fda4749c.tar.gz openembedded-core-80e6f9201ffa3b8f52f6d452c8657ec6fda4749c.tar.bz2 openembedded-core-80e6f9201ffa3b8f52f6d452c8657ec6fda4749c.tar.xz openembedded-core-80e6f9201ffa3b8f52f6d452c8657ec6fda4749c.zip |
uclibc: Configure UCLIBC_HAS_WCHAR based on libc-posix-clang-wchar distro feature
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta/recipes-core/uclibc')
-rw-r--r-- | meta/recipes-core/uclibc/uclibc-config.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-core/uclibc/uclibc-config.inc b/meta/recipes-core/uclibc/uclibc-config.inc index a30188d20..3de384598 100644 --- a/meta/recipes-core/uclibc/uclibc-config.inc +++ b/meta/recipes-core/uclibc/uclibc-config.inc @@ -105,6 +105,7 @@ def features_to_uclibc_settings(d): uclibc_cfg('ssp', distro_features, 'UCLIBC_HAS_SSP', cnf, rem) uclibc_cfg('argp', distro_features, 'UCLIBC_HAS_ARGP', cnf, rem) uclibc_cfg('kernel24', machine_features,'UCLIBC_LINUX_MODULE_24', cnf, rem) + uclibc_cfg('libc-posix-clang-wchar', distro_features,'UCLIBC_HAS_WCHAR', cnf, rem) return "\n".join(cnf), "\n".join(rem) # X, Y = ${@features_to_uclibc_settings(d)} # unfortunately doesn't seem to work with bitbake, workaround: |