lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

commit 817fba835cea1fde0a7f62797a8ff7e55558c2cf
parent 2edb2e36ec662ecd950ebc9fb8e7b8931d9bbb10
Author: Daniel Dickinson <openwrt@daniel.thecshore.com>
Date:   Sun, 27 Mar 2016 10:07:47 -0400

utils/collectd: Disable libudev linking

At least when building with OpenWrt SDK, if libudev is present
(even if not actually used by the system), then at least the
disk plugin attempts to link against udev, which results in
packages failure due to lack of dependencies, and it's not
desirable to add a dependency on udev just because udev
was built for the SDK, so we disable libudev support
explicity.

Signed-off-by: Daniel Dickinson <openwrt@daniel.thecshore.com>

Conflicts:
	utils/collectd/Makefile

Diffstat:
Mutils/collectd/Makefile | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/utils/collectd/Makefile b/utils/collectd/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=collectd PKG_VERSION:=5.5.1 -PKG_RELEASE:=4 +PKG_RELEASE:=6 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=http://collectd.org/files/ @@ -193,7 +193,8 @@ CONFIGURE_ARGS+= \ --disable-debug \ --enable-daemon \ --with-nan-emulation \ - --without-perl-bindings + --without-perl-bindings \ + --without-libudev ifneq ($(CONFIG_PACKAGE_COLLECTD_ENCRYPTED_NETWORK),) CONFIGURE_ARGS+= \