From: Sebastian Harl Date: Sun, 23 Aug 2015 13:35:53 +0000 (+0200) Subject: rules: Disable the turbostat plugin on !amd64,!i386. X-Git-Tag: collectd-5.5.0-2^0 X-Git-Url: https://git.tokkee.org/?p=pkg-collectd.git;a=commitdiff_plain;h=44de5b8d1262bd4335d6fe5c695ff3c56f32316a rules: Disable the turbostat plugin on !amd64,!i386. It's Intel-hardware specific. --- diff --git a/debian/changelog b/debian/changelog index f72e38e..de164ef 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +collectd (5.5.0-2) unstable; urgency=low + + * debian/rules: + - Disable the turbostat plugin on !amd64,!i386; it's Intel-hardware + specific. + + -- Sebastian Harl Sun, 23 Aug 2015 15:35:26 +0200 + collectd (5.5.0-1) unstable; urgency=medium [ Marc Fournier ] diff --git a/debian/rules b/debian/rules index aab7db9..229a9be 100755 --- a/debian/rules +++ b/debian/rules @@ -144,6 +144,12 @@ ifneq (,$(filter kfreebsd-i386 kfreebsd-amd64, $(DEB_BUILD_ARCH))) --disable-java endif +# This plugin is Intel-hardware specific. +ifeq (,$(filter amd64 i386, $(DEB_BUILD_ARCH))) + confflags += \ + --disable-turbostat +endif + # The hppa buildds currently do not keep up with Java related stuff, thus # prevending testing transitions. sparc is also having trouble building the # java plugin.