summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGustavo Zacarias2012-06-02 06:37:13 +0200
committerPeter Korsgaard2012-06-05 16:36:28 +0200
commit6457adf87b17c597761a503cfbee4923a3772ee8 (patch)
treef51c98e9293fde936e0ace54dcb77bc03df3a4ce
parentmediastreamer: disable test programs (diff)
downloadbuildroot-6457adf87b17c597761a503cfbee4923a3772ee8.tar.gz
buildroot-6457adf87b17c597761a503cfbee4923a3772ee8.tar.xz
buildroot-6457adf87b17c597761a503cfbee4923a3772ee8.zip
collectd: fix dependencies for bind plugin
The bind plugin requires libcurl and libxml2. These are properly selected but never added to COLLECTD_DEPENDENCIES. Fix that. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r--package/collectd/collectd.mk1
1 files changed, 1 insertions, 0 deletions
diff --git a/package/collectd/collectd.mk b/package/collectd/collectd.mk
index 0109f77b5..440450998 100644
--- a/package/collectd/collectd.mk
+++ b/package/collectd/collectd.mk
@@ -87,6 +87,7 @@ COLLECTD_CONF_OPT += --with-nan-emulation --with-fp-layout=nothing \
COLLECTD_DEPENDENCIES = host-pkg-config \
$(if $(BR2_PACKAGE_COLLECTD_APACHE),libcurl) \
+ $(if $(BR2_PACKAGE_COLLECTD_BIND),libcurl libxml2) \
$(if $(BR2_PACKAGE_COLLECTD_CURL),libcurl) \
$(if $(BR2_PACKAGE_COLLECTD_CURL_JSON),libcurl yajl) \
$(if $(BR2_PACKAGE_COLLECTD_CURL_XML),libcurl libxml2) \