Config.in 707 B

1234567891011121314151617
  1. config BR2_PACKAGE_RIEMANN_C_CLIENT
  2. bool "riemann-c-client"
  3. depends on BR2_INSTALL_LIBSTDCPP # protobuf-c
  4. depends on BR2_TOOLCHAIN_HAS_THREADS # protobuf-c
  5. depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" # protobuf-c
  6. select BR2_PACKAGE_PROTOBUF_C
  7. help
  8. Riemann-c-client is a C client library for the Riemann
  9. monitoring system, providing a convenient and simple API,
  10. high test coverage and a copyleft license, along with API
  11. and ABI stability.
  12. https://github.com/algernon/riemann-c-client
  13. comment "riemann-c-client needs a toolchain w/ C++, threads"
  14. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
  15. depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86"