From: Sebastian Harl Date: Sun, 19 Apr 2009 17:32:08 +0000 (+0200) Subject: rules: Disabled "netlink" plugin on mips and mipsel. X-Git-Tag: collectd-4.6.2-2~12 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=a64e9b767acd4d99d67246958c24446e3f5d1ba2;p=pkg-collectd.git rules: Disabled "netlink" plugin on mips and mipsel. Those architectures do not allow to link non-PIC code into shared objects. Closes: #524593 --- diff --git a/debian/changelog b/debian/changelog index 673fcb8..8539ed2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,8 +8,10 @@ collectd (4.6.2-2) unstable; urgency=low - Added a sample filter chain configuration. * debian/rules: - Added contrib/php-collection/ to /usr/share/doc/collectd/. + - Disabled "netlink" plugin on mips and mipsel - those architectures do + not allow to link non-PIC code into shared objects (Closes: #524593). - -- Sebastian Harl Sun, 19 Apr 2009 18:01:40 +0200 + -- Sebastian Harl Sun, 19 Apr 2009 19:29:20 +0200 collectd (4.6.2-1) unstable; urgency=low diff --git a/debian/rules b/debian/rules index c5d7664..6292185 100755 --- a/debian/rules +++ b/debian/rules @@ -48,7 +48,7 @@ confflags += --disable-apple_sensors --disable-tape # The static library netstat cannot be linked into shared objects on some # architectures (see bugs #358637 and #419684 for more details). -ifneq (,$(findstring $(DEB_BUILD_ARCH),alpha amd64 hppa ia64 ppc64)) +ifneq (,$(findstring $(DEB_BUILD_ARCH),alpha amd64 hppa ia64 ppc64 mips mipsel)) confflags += --disable-netlink endif