Code

rules: Disabled "netlink" plugin on mips and mipsel.
authorSebastian Harl <sh@tokkee.org>
Sun, 19 Apr 2009 17:32:08 +0000 (19:32 +0200)
committerSebastian Harl <sh@tokkee.org>
Sun, 19 Apr 2009 17:32:08 +0000 (19:32 +0200)
Those architectures do not allow to link non-PIC code into shared objects.

Closes: #524593
debian/changelog
debian/rules

index 673fcb8e0a369a638f9b5efb1eb8a94a553230d4..8539ed2125c84a0109b08b8e3e3abe4d06253f0c 100644 (file)
@@ -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 <sh@tokkee.org>  Sun, 19 Apr 2009 18:01:40 +0200
+ -- Sebastian Harl <sh@tokkee.org>  Sun, 19 Apr 2009 19:29:20 +0200
 
 collectd (4.6.2-1) unstable; urgency=low
 
index c5d7664774d19b72dcd500a8ae2a8df08b4c8c61..629218550e88c2d77b7032baf3f176a191723d75 100755 (executable)
@@ -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