summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: e01d2c1)
raw | patch | inline | side by side (parent: e01d2c1)
author | octo <octo> | |
Tue, 21 Mar 2006 21:56:22 +0000 (21:56 +0000) | ||
committer | octo <octo> | |
Tue, 21 Mar 2006 21:56:22 +0000 (21:56 +0000) |
ChangeLog | patch | blob | history | |
collectd.spec | patch | blob | history | |
configure.in | patch | blob | history | |
debian/changelog | patch | blob | history |
diff --git a/ChangeLog b/ChangeLog
index 7291b5ce509d7c59e207842caa7e03e4c9996856..2e0860936ab3a6650ac1b0118ce06c2106abb52e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
+2006-03-21, Version 3.9.0
+ * A plugin to monitor the Apache webserver has been added.
+ <http://httpd.apache.org/>
+ * A plugin to collect statistics about virtual servers using VServer.
+ <http://linux-vserver.org/> Thanks to Sebastian Harl for writing
+ this plugin :)
+ * A plugin for wireless LAN cards has been added. It monitors signal
+ strength, link quality and noise ratio..
+ * An option to compile collectd with different `step' and `hearbeat'
+ settings has been added. The size of RRAs is no longer static but
+ calculated based on the settings for `step' and `width'.
+
2006-03-14, Version 3.8.2
* `utils_mount.c' has been changed to not use the `MNTTAB' defined by
the GNU libc, because it points to `/etc/fstab' rather than
diff --git a/collectd.spec b/collectd.spec
index a74acf12b1d1403d1164e4c93de64742a5651391..d06ca04c13f222000bda2f4151205dc3c12f6ef4 100644 (file)
--- a/collectd.spec
+++ b/collectd.spec
Summary: Statistics collection daemon for filling RRD files.
Name: collectd
-Version: 3.8.1
+Version: 3.9.0
Release: 1
Source: http://verplant.org/collectd/%{name}-%{version}.tar.gz
License: GPL
%attr(0444,root,root) %{_libdir}/%{name}/tape.so*
%attr(0444,root,root) %{_libdir}/%{name}/traffic.so*
%attr(0444,root,root) %{_libdir}/%{name}/users.so*
+%attr(0444,root,root) %{_libdir}/%{name}/vserver.so*
+%attr(0444,root,root) %{_libdir}/%{name}/wireless.so*
%dir /var/lib/collectd
%files mysql
%attr(0444,root,root) %{_libdir}/%{name}/sensors.so*
%changelog
+* Thu Mar 21 2006 Florian octo Forster <octo@verplant.org> 3.9.0-1
+- New upstream version
+
* Thu Mar 14 2006 Florian octo Forster <octo@verplant.org> 3.8.2-1
- New upstream version
diff --git a/configure.in b/configure.in
index ac48b82f5fca71269c0b573b35505a9765792c71..af5500ef9a2da7bed1d800e9e1ec348c46b2518d 100644 (file)
--- a/configure.in
+++ b/configure.in
dnl Process this file with autoconf to produce a configure script.
-AC_INIT(collectd, 3.8.2)
+AC_INIT(collectd, 3.9.0)
AC_CONFIG_SRCDIR(src/collectd.c)
AC_CONFIG_HEADERS(src/config.h)
AM_INIT_AUTOMAKE(dist-bzip2)
AC_DEFINE(HAVE_LIBCURL, 1, [Define to 1 if you have the 'curl' library (-lcurl).])
],
[with_libcurl="no"])
-AM_CONDITIONAL(BUILD_WITH_LIBCURL, test "x$with_libcurl" = "xyes")
-
if test "x$with_libcurl" = "xyes"
then
- with_libcurl_libs=`curl-config --libs`
- if test "x$with_libcurl_libs" != "x"
+ with_libcurl_libs=`curl-config --libs 2>/dev/null`
+ curl_config_status=$?
+
+ BUILD_WITH_LIBCURL_LIBS="-lcurl"
+ if test $curl_config_status -ne 0
then
- BUILD_WITH_LIBCURL_LIBS="$with_libcurl_libs";
- AC_SUBST(BUILD_WITH_LIBCURL_LIBS)
+ with_libcurl="no"
+ else
+ if test "x$with_libcurl_libs" != "x"
+ then
+ BUILD_WITH_LIBCURL_LIBS="$with_libcurl_libs";
+ fi
fi
+ AC_SUBST(BUILD_WITH_LIBCURL_LIBS)
fi
+AM_CONDITIONAL(BUILD_WITH_LIBCURL, test "x$with_libcurl" = "xyes")
m4_divert_once([HELP_WITH], [
collectd additional packages:])
diff --git a/debian/changelog b/debian/changelog
index de8dbb3625c418e514ed1a36ee240354b3c7e542..d35c75f02ab2cd841fb1dcca867afd9b8e756482 100644 (file)
--- a/debian/changelog
+++ b/debian/changelog
+collectd (3.9.0-1) unstable; urgency=low
+
+ * New upstream version
+
+ -- Florian Forster <octo@verplant.org> Tue, 21 Mar 2006 22:52:54 +0200
+
collectd (3.8.2-1) unstable; urgency=low
* New upstream version