Code

rules: Disable the turbostat plugin on !amd64,!i386. collectd-5.5.0-2
authorSebastian Harl <sh@tokkee.org>
Sun, 23 Aug 2015 13:35:53 +0000 (15:35 +0200)
committerSebastian Harl <sh@tokkee.org>
Sun, 23 Aug 2015 13:35:53 +0000 (15:35 +0200)
It's Intel-hardware specific.

debian/changelog
debian/rules

index f72e38e274869c66761d8f6ee6d496d1af31e0e6..de164efc4b87f8c5bacb95c7f309c0ab0ceac41f 100644 (file)
@@ -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 <tokkee@debian.org>  Sun, 23 Aug 2015 15:35:26 +0200
+
 collectd (5.5.0-1) unstable; urgency=medium
 
   [ Marc Fournier ]
index aab7db998ca552109936748cbd164bf1756d0dae..229a9be05aeb8e1bccc0b0ec6696ad6ddfce6384 100755 (executable)
@@ -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.