9b6c5e9c98
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>
17 lines
508 B
Plaintext
17 lines
508 B
Plaintext
config BR2_PACKAGE_BEECRYPT
|
|
bool "beecrypt"
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
select BR2_PACKAGE_ICU if BR2_INSTALL_LIBSTDCPP && BR2_USE_WCHAR && \
|
|
!BR2_arc
|
|
help
|
|
Beecrypt is a general-purpose cryptography library.
|
|
|
|
http://beecrypt.sf.net
|
|
|
|
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
|