Code

rules: disable dpdkstat plugin on non-Intel platforms
authorMarc Fournier <marc@bl.uem.li>
Sun, 18 Dec 2016 09:40:37 +0000 (10:40 +0100)
committerMarc Fournier <marc@bl.uem.li>
Sun, 18 Dec 2016 09:56:46 +0000 (10:56 +0100)
debian/changelog
debian/rules

index 142a5e032c697daef108b1069bb46132359105da..afc5812fe7ee4d482111f9363163078fc9c56652 100644 (file)
@@ -3,6 +3,8 @@ collectd (5.7.0-2) UNRELEASED; urgency=medium
   * debian/patches:
     - Add dpdkstat-portable-format-string.patch, fixing the build on
       i386.
+  * debian/rules:
+    - Disable dpdkstat plugin on non-Intel architectures.
 
  -- Marc Fournier <marc@bl.uem.li>  Sun, 18 Dec 2016 10:32:14 +0100
 
index 2f31b1b7ed63b634886b24b12039aa5d1b7bcc8b..b3325ec7870a430c57e3f380e30fb5dca1fbbdbf 100755 (executable)
@@ -158,9 +158,10 @@ ifneq (,$(filter kfreebsd-i386 kfreebsd-amd64, $(DEB_BUILD_ARCH)))
                --disable-java
 endif
 
-# This plugin is Intel-hardware specific.
+# These plugins are Intel-hardware specific.
 ifeq (,$(filter amd64 i386, $(DEB_BUILD_ARCH)))
        confflags += \
+               --disable-dpdkstat \
                --disable-turbostat
 endif