diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2013-05-16 01:40:01 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-05-23 23:34:28 +0200 |
commit | 1c3afe4bc14a55aa491be270c24f31d1c5d4d8f1 (patch) | |
tree | caf76d68bc8164ec11f705f7d1612dda7dff9ded | |
parent | d624203238b2565ba180d5bad45ecc86c3cac620 (diff) | |
download | buildroot-novena-1c3afe4bc14a55aa491be270c24f31d1c5d4d8f1.tar.gz buildroot-novena-1c3afe4bc14a55aa491be270c24f31d1c5d4d8f1.zip |
poco: not available for all architectures
Missing defines for:
aarch64, arc, blackfin, microblaze & xtensa.
Not properly supported: mips - only defines generic mips as BE, doesn't
know about mipsel (LE) thus assuming it's BE.
Fixes:
http://autobuild.buildroot.net/results/9847702b046bed59b07f0e075a58b1f31e9236ce/
This should be pretty straightforward to fix in
Foundation/include/Poco/Platform.h for interested parties since it only
cares about endianness.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | package/poco/Config.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/poco/Config.in b/package/poco/Config.in index b8230717b..402f96d3b 100644 --- a/package/poco/Config.in +++ b/package/poco/Config.in @@ -3,6 +3,7 @@ config BR2_PACKAGE_POCO depends on BR2_INSTALL_LIBSTDCPP depends on BR2_USE_WCHAR depends on BR2_TOOLCHAIN_HAS_THREADS + depends on !(BR2_aarch64 || BR2_arc || BR2_bfin || BR2_microblaze || BR2_mipsel || BR2_xtensa) select BR2_PACKAGE_ZLIB select BR2_PACKAGE_PCRE help @@ -61,3 +62,4 @@ endif # BR2_PACKAGE_POCO comment "poco requires a toolchain with WCHAR, threads, and C++ support" depends on !BR2_USE_WCHAR || !BR2_INSTALL_LIBSTDCPP \ || !BR2_TOOLCHAIN_HAS_THREADS + depends on !(BR2_aarch64 || BR2_arc || BR2_bfin || BR2_microblaze || BR2_mipsel || BR2_xtensa) |