044752f563
redis-plus-plus unconditonally uses mutex and so needs threads since its addition in commitc46df9de21
and1fa8f6bbfb
: In file included from /home/autobuild/autobuild/instance-5/output-1/build/redis-plus-plus-1.3.10/src/sw/redis++/connection_pool.h:27, from /home/autobuild/autobuild/instance-5/output-1/build/redis-plus-plus-1.3.10/src/sw/redis++/connection_pool.cpp:17: /home/autobuild/autobuild/instance-5/output-1/build/redis-plus-plus-1.3.10/src/sw/redis++/sentinel.h:95:10: error: 'mutex' in namespace 'std' does not name a type 95 | std::mutex _mutex; | ^~~~~ Fixes:c46df9de21
- http://autobuild.buildroot.org/results/cc4c54134e8a522b4c028aab4266f47cf862e2a9 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
17 lines
493 B
Plaintext
17 lines
493 B
Plaintext
config BR2_PACKAGE_REDIS_PLUS_PLUS
|
|
bool "redis-plus-plus"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
select BR2_PACKAGE_HIREDIS
|
|
help
|
|
Redis client written in C++
|
|
|
|
This is a C++ client library for Redis.
|
|
It's based on hiredis, and is compatible
|
|
with C++ 17, C++ 14, and C++ 11.
|
|
|
|
https://github.com/sewenew/redis-plus-plus
|
|
|
|
comment "redis-plus-plus needs a toolchain w/ C++, threads"
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
|