summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 54b8bf9)
raw | patch | inline | side by side (parent: 54b8bf9)
author | Sebastian Harl <sh@tokkee.org> | |
Sun, 19 Apr 2009 17:32:08 +0000 (19:32 +0200) | ||
committer | Sebastian 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
Closes: #524593
debian/changelog | patch | blob | history | |
debian/rules | patch | blob | history |
diff --git a/debian/changelog b/debian/changelog
index 673fcb8e0a369a638f9b5efb1eb8a94a553230d4..8539ed2125c84a0109b08b8e3e3abe4d06253f0c 100644 (file)
--- a/debian/changelog
+++ b/debian/changelog
- 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
diff --git a/debian/rules b/debian/rules
index c5d7664774d19b72dcd500a8ae2a8df08b4c8c61..629218550e88c2d77b7032baf3f176a191723d75 100755 (executable)
--- a/debian/rules
+++ b/debian/rules
# 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