From: Gustavo Zacarias Date: Sat, 2 Jun 2012 04:37:13 +0000 (+0000) Subject: collectd: fix dependencies for bind plugin X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6457adf87b17c597761a503cfbee4923a3772ee8;p=buildroot.git 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 Signed-off-by: Peter Korsgaard --- diff --git a/package/collectd/collectd.mk b/package/collectd/collectd.mk index 0109f77b50..440450998c 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) \