From: Marc Fournier Date: Thu, 22 Sep 2016 07:04:02 +0000 (+0200) Subject: rules: disable a couple of Linux-only plugins on kFreeBSD X-Git-Tag: collectd-5.6.1-1^2~4 X-Git-Url: https://git.tokkee.org/?p=pkg-collectd.git;a=commitdiff_plain;h=b072953574d5dc69912d5d1ebbdf319139684131 rules: disable a couple of Linux-only plugins on kFreeBSD --- diff --git a/debian/changelog b/debian/changelog index d7a10d3..9872a06 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,6 +5,9 @@ collectd (5.6.1-1) UNRELEASED; urgency=medium Shish for reporting this (Closes: #839771). - rrdcached plugin now reconnects to daemon. Thanks to Matthias Urlichs for reporting this (Closes: #657877). + * debian/rules: + - Disable building the barometer, drbd, fhcount and ipc plugins on + kfreebsd architectures, as they are Linux-only. -- Marc Fournier Sun, 09 Oct 2016 20:41:36 +0200 diff --git a/debian/rules b/debian/rules index e26fb54..d34f88f 100755 --- a/debian/rules +++ b/debian/rules @@ -91,9 +91,13 @@ confflags += --disable-grpc # These plugins are Linux-specific. ifneq (,$(filter kfreebsd-i386 kfreebsd-amd64, $(DEB_BUILD_ARCH))) confflags += \ + --disable-barometer \ --disable-cgroups \ --disable-cpusleep \ + --disable-drbd \ --disable-ethstat \ + --disable-fhcount \ + --disable-ipc \ --disable-iptables \ --disable-ipvs \ --disable-lvm \