Config.in 578 B

1234567891011121314151617
  1. config BR2_PACKAGE_REDIS
  2. bool "redis"
  3. depends on BR2_USE_MMU # fork()
  4. depends on !BR2_STATIC_LIBS # dlfcn.h
  5. depends on BR2_TOOLCHAIN_HAS_ATOMIC
  6. depends on BR2_TOOLCHAIN_HAS_THREADS
  7. help
  8. Redis is an open source, advanced key-value store. It is
  9. often referred to as a data structure server since keys can
  10. contain strings, hashes, lists, sets and sorted sets.
  11. http://www.redis.io
  12. comment "redis needs a toolchain w/ dynamic library, threads"
  13. depends on BR2_USE_MMU
  14. depends on BR2_TOOLCHAIN_HAS_ATOMIC
  15. depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS