xref: /OK3568_Linux_fs/buildroot/package/redis/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyunconfig BR2_PACKAGE_REDIS
2*4882a593Smuzhiyun	bool "redis"
3*4882a593Smuzhiyun	depends on BR2_USE_MMU # fork()
4*4882a593Smuzhiyun	depends on !BR2_STATIC_LIBS # dlfcn.h
5*4882a593Smuzhiyun	depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # _Atomic keyword
6*4882a593Smuzhiyun	depends on BR2_TOOLCHAIN_HAS_ATOMIC
7*4882a593Smuzhiyun	depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # pthread_setname_np()
8*4882a593Smuzhiyun	help
9*4882a593Smuzhiyun	  Redis is an open source (BSD licensed), in-memory data
10*4882a593Smuzhiyun	  structure store, used as a database, cache and message
11*4882a593Smuzhiyun	  broker. It supports data structures such as strings,
12*4882a593Smuzhiyun	  hashes, lists, sets, sorted sets with range queries,
13*4882a593Smuzhiyun	  bitmaps, hyperloglogs, geospatial indexes with radius
14*4882a593Smuzhiyun	  queries and streams.
15*4882a593Smuzhiyun
16*4882a593Smuzhiyun	  http://www.redis.io
17*4882a593Smuzhiyun
18*4882a593Smuzhiyuncomment "redis needs a toolchain w/ gcc>=4.9, dynamic library, nptl"
19*4882a593Smuzhiyun	depends on BR2_USE_MMU
20*4882a593Smuzhiyun	depends on BR2_TOOLCHAIN_HAS_ATOMIC
21*4882a593Smuzhiyun	depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS_NPTL \
22*4882a593Smuzhiyun		|| !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
23