summaryrefslogtreecommitdiff
path: root/package/icu
diff options
context:
space:
mode:
authorYann E. MORIN <yann.morin.1998@free.fr>2014-08-17 21:29:41 +0200
committerPeter Korsgaard <peter@korsgaard.com>2014-08-18 10:56:42 +0200
commit19237110da2d026216fc787ae55a7444877742cc (patch)
tree780f96ce2b6f1bfd4e57daa50c3154a6f7c61f5a /package/icu
parent1b5f0fc8dfdad74649d4e12737c83e727e116535 (diff)
package/icu: use the new ARCH_HAS_ATOMICS as dependency
And propagate to the reverse dependencies of icu. Also, fix beecrypt's comment: only the C++ support needs atomics. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Anton Kolesov <Anton.Kolesov@synopsys.com> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/icu')
-rw-r--r--package/icu/Config.in7
1 files changed, 4 insertions, 3 deletions
diff --git a/package/icu/Config.in b/package/icu/Config.in
index d4521ac13..d7bf2fe3a 100644
--- a/package/icu/Config.in
+++ b/package/icu/Config.in
@@ -7,7 +7,7 @@ config BR2_PACKAGE_ICU
# file, and it cannot easily be changed to generate FLAT
# format.
depends on !BR2_BINFMT_FLAT
- depends on BR2_TOOLCHAIN_HAS_ATOMIC_INTRINSICS
+ depends on BR2_ARCH_HAS_ATOMICS
help
International Components for Unicode.
@@ -25,7 +25,8 @@ config BR2_PACKAGE_ICU_CUSTOM_DATA_PATH
endif
-comment "icu needs a toolchain w/ C++, wchar, threads, atomic intrinsics"
+comment "icu needs a toolchain w/ C++, wchar, threads"
depends on !BR2_BINFMT_FLAT
+ depends on BR2_ARCH_HAS_ATOMICS
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
- !BR2_TOOLCHAIN_HAS_THREADS || !BR2_TOOLCHAIN_HAS_ATOMIC_INTRINSICS
+ !BR2_TOOLCHAIN_HAS_THREADS