diff options
| author | Yann E. MORIN <yann.morin.1998@free.fr> | 2014-08-17 21:29:41 +0200 |
|---|---|---|
| committer | Peter Korsgaard <peter@korsgaard.com> | 2014-08-18 10:56:42 +0200 |
| commit | 19237110da2d026216fc787ae55a7444877742cc (patch) | |
| tree | 780f96ce2b6f1bfd4e57daa50c3154a6f7c61f5a /package/beecrypt | |
| parent | 1b5f0fc8dfdad74649d4e12737c83e727e116535 (diff) | |
| download | buildroot-19237110da2d026216fc787ae55a7444877742cc.tar.gz buildroot-19237110da2d026216fc787ae55a7444877742cc.zip | |
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/beecrypt')
| -rw-r--r-- | package/beecrypt/Config.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/package/beecrypt/Config.in b/package/beecrypt/Config.in index e0f9181a29..b9685ef3b0 100644 --- a/package/beecrypt/Config.in +++ b/package/beecrypt/Config.in @@ -1,5 +1,5 @@ -comment "beecrypt needs a toolchain w/ threads, atomic intrinsics" - depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_TOOLCHAIN_HAS_ATOMIC_INTRINSICS +comment "beecrypt needs a toolchain w/ threads" + depends on !BR2_TOOLCHAIN_HAS_THREADS config BR2_PACKAGE_BEECRYPT bool "beecrypt" @@ -15,15 +15,15 @@ config BR2_PACKAGE_BEECRYPT_CPP bool "C++ support" depends on BR2_INSTALL_LIBSTDCPP depends on BR2_USE_WCHAR # icu - depends on BR2_TOOLCHAIN_HAS_ATOMIC_INTRINSICS # icu depends on !BR2_BINFMT_FLAT # icu + depends on BR2_ARCH_HAS_ATOMICS # icu select BR2_PACKAGE_ICU help Enable C++ support. This pulls in the (large) icu package. -comment "C++ support needs a toolchain w/ wchar, atomic intrinsics" +comment "C++ support needs a toolchain w/ wchar" depends on !BR2_BINFMT_FLAT - depends on BR2_INSTALL_LIBSTDCPP && (!BR2_USE_WCHAR || \ - !BR2_TOOLCHAIN_HAS_ATOMIC_INTRINSICS) + depends on BR2_ARCH_HAS_ATOMICS + depends on BR2_INSTALL_LIBSTDCPP && !BR2_USE_WCHAR endif # BR2_PACKAGE_BEECRYPT |

