+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
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
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:])
+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