Code

rules: Disabled ethstat, md, and numa plugins on kfreebsd.
authorSebastian Harl <sh@tokkee.org>
Sat, 19 May 2012 13:21:01 +0000 (15:21 +0200)
committerSebastian Harl <sh@tokkee.org>
Sat, 19 May 2012 13:21:01 +0000 (15:21 +0200)
These plugins are Linux specific.

debian/changelog
debian/rules

index 5f3aa3896cdd7436dd2c1335b7a972facc769264..20b3cc00905cd653365577a2aea5ecb37d34af2f 100644 (file)
@@ -22,6 +22,8 @@ collectd (5.1.0-1) unstable; urgency=low
     - Disabled lpar plugin -- this requires AIX (perfstat).
     - Disabled redis and write_redis plugins -- they require libcredis.
     - Disabled write_mongodb plugin -- this requires libmongoc.
+    - Disabled ethstat, md, and numa plugins on kfreebsd -- these plugins are
+      Linux specific.
   * debian/control:
     - Added build-dep on librabbitmq-dev, required by the AMQP plugin.
     - Added build-dep on libvarnish-dev, required by the varnish plugin.
index 2d7ce9522db7bf9a745478ed57c60f3199942260..69166d13d9e608626f017acab67eaec53662b1e4 100755 (executable)
@@ -101,10 +101,13 @@ endif
 # These plugins are Linux-specific.
 ifneq (,$(filter kfreebsd-i386 kfreebsd-amd64, $(DEB_BUILD_ARCH)))
        confflags += \
+               --disable-ethstat \
                --disable-iptables \
                --disable-ipvs \
                --disable-madwifi \
+               --disable-md \
                --disable-netlink \
+               --disable-numa \
                --disable-sensors \
                --disable-vserver
 endif