339048ba66
It uses __atomic_fetch_add_4 so libatomic must be pulled in if necessary. Fixes: http://autobuild.buildroot.net/results/dfd/dfdfd77463b0ddd7016202372afcad7fb6fc9ce4/ [Peter: keep TARGET_CONFIGURE_OPTS] Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
17 lines
503 B
Plaintext
17 lines
503 B
Plaintext
config BR2_PACKAGE_REDIS
|
|
bool "redis"
|
|
depends on BR2_USE_MMU # fork()
|
|
depends on BR2_TOOLCHAIN_HAS_ATOMIC
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
help
|
|
Redis is an open source, advanced key-value store. It is
|
|
often referred to as a data structure server since keys can
|
|
contain strings, hashes, lists, sets and sorted sets.
|
|
|
|
http://www.redis.io
|
|
|
|
comment "redis needs a toolchain w/ threads"
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_TOOLCHAIN_HAS_ATOMIC
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS
|