1config 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 13 https://github.com/algernon/riemann-c-client 14 15comment "riemann-c-client needs a toolchain w/ C++, threads" 16 depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS 17 depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" 18