diff options
| author | Mischa Jonker <mischa.jonker@synopsys.com> | 2013-11-11 17:10:53 +0100 |
|---|---|---|
| committer | Peter Korsgaard <peter@korsgaard.com> | 2013-11-11 22:27:25 +0100 |
| commit | 9b6c5e9c989f4a099efe8d438a47dd465bdcffc8 (patch) | |
| tree | 68ab61f6b398ce3dde852b5b606cad77b322ed14 /package/beecrypt | |
| parent | bed4e27868aaefb3b82dca9ba076415bec368557 (diff) | |
| download | buildroot-9b6c5e9c989f4a099efe8d438a47dd465bdcffc8.tar.gz buildroot-9b6c5e9c989f4a099efe8d438a47dd465bdcffc8.zip | |
icu: Doesn't work on ARC yet
icu depends on __sync_sub_and_fetch and other atomic primitives that
don't exist in the ARC toolchain yet.
[Peter: adjust beecrypt/php comment dependency, don't mention atomic builtins]
Signed-off-by: Mischa Jonker <mjonker@synopsys.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/beecrypt')
| -rw-r--r-- | package/beecrypt/Config.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/package/beecrypt/Config.in b/package/beecrypt/Config.in index caa6d1784a..033742c8f8 100644 --- a/package/beecrypt/Config.in +++ b/package/beecrypt/Config.in @@ -1,7 +1,8 @@ config BR2_PACKAGE_BEECRYPT bool "beecrypt" depends on BR2_TOOLCHAIN_HAS_THREADS - select BR2_PACKAGE_ICU if BR2_INSTALL_LIBSTDCPP && BR2_USE_WCHAR + select BR2_PACKAGE_ICU if BR2_INSTALL_LIBSTDCPP && BR2_USE_WCHAR && \ + !BR2_arc help Beecrypt is a general-purpose cryptography library. @@ -11,4 +12,5 @@ comment "beecrypt needs a toolchain w/ threads" depends on !BR2_TOOLCHAIN_HAS_THREADS comment "beecrypt C++ support needs a toolchain w/ wchar" + depends on !BR2_arc depends on BR2_INSTALL_LIBSTDCPP && !BR2_USE_WCHAR && BR2_TOOLCHAIN_HAS_THREADS |

