diff options
Diffstat (limited to 'package/redis/Config.in')
-rw-r--r-- | package/redis/Config.in | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/package/redis/Config.in b/package/redis/Config.in new file mode 100644 index 000000000..a1d810145 --- /dev/null +++ b/package/redis/Config.in @@ -0,0 +1,14 @@ +config BR2_PACKAGE_REDIS + bool "redis" + depends on BR2_USE_MMU # fork() + depends on BR2_TOOLCHAIN_HAS_THREADS + depends on BR2_LARGEFILE + 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 with LARGEFILE and thread support" + depends on !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS |