diff options
author | Peter Korsgaard <peter@korsgaard.com> | 2016-12-28 23:18:06 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2017-01-03 23:48:59 +0100 |
commit | 103fd78bf77693d6e79212d1b8ec825ffd78fdba (patch) | |
tree | 27751acad8a9a0b26bf42603a9b0bdc512958f0c | |
parent | 8d68b3b957f470ce3a9a6ba4ba0dff03d8317895 (diff) | |
download | buildroot-103fd78bf77693d6e79212d1b8ec825ffd78fdba.tar.gz buildroot-103fd78bf77693d6e79212d1b8ec825ffd78fdba.zip |
collectd: fix riemann write plugin dependencies
Fixes:
http://autobuild.buildroot.org/results/fe5/fe5b5ed6355a794e84894c4aaf62eda6529ed184/
http://autobuild.buildroot.org/results/6c3/6c393cffb6ad4e676e311e9fc23ddbb2bcc2cf36/
The plugin uses the riemann-c-client library since commit d55584214206
(write_riemann: Use riemann-c-client), so adjust the dependencies to match.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/collectd/Config.in | 2 | ||||
-rw-r--r-- | package/collectd/collectd.mk | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/package/collectd/Config.in b/package/collectd/Config.in index ab49b71e02..683141b120 100644 --- a/package/collectd/Config.in +++ b/package/collectd/Config.in @@ -550,7 +550,7 @@ config BR2_PACKAGE_COLLECTD_RIEMANN depends on BR2_INSTALL_LIBSTDCPP # protobuf # protobuf-c -> host-protobuf depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" - select BR2_PACKAGE_PROTOBUF_C + select BR2_PACKAGE_RIEMANN_C_CLIENT select BR2_PACKAGE_LIBTOOL help Sends data to Riemann, a stream processing and monitoring system. diff --git a/package/collectd/collectd.mk b/package/collectd/collectd.mk index 28c1b31e09..7ab7dd4223 100644 --- a/package/collectd/collectd.mk +++ b/package/collectd/collectd.mk @@ -146,7 +146,7 @@ COLLECTD_DEPENDENCIES = \ $(if $(BR2_PACKAGE_COLLECTD_OPENLDAP),openldap) \ $(if $(BR2_PACKAGE_COLLECTD_PING),liboping) \ $(if $(BR2_PACKAGE_COLLECTD_POSTGRESQL),postgresql) \ - $(if $(BR2_PACKAGE_COLLECTD_RIEMANN),libtool protobuf-c) \ + $(if $(BR2_PACKAGE_COLLECTD_RIEMANN),libtool riemann-c-client) \ $(if $(BR2_PACKAGE_COLLECTD_RRDTOOL),rrdtool) \ $(if $(BR2_PACKAGE_COLLECTD_SENSORS),lm-sensors) \ $(if $(BR2_PACKAGE_COLLECTD_SMART),libatasmart) \ |