Updated to version 3.6.1, due to a bug in `configure.in'
authorocto <octo>
Fri, 20 Jan 2006 17:30:19 +0000 (17:30 +0000)
committerocto <octo>
Fri, 20 Jan 2006 17:30:19 +0000 (17:30 +0000)
ChangeLog
collectd.spec
configure.in
debian/changelog

index 838d16f..bd8bd41 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-01-20, Version 3.6.1
+       * Due to a bug in `configure.in' all modules and the binary were
+         linked against `libmysqlclient'. This issue is solved by this
+         release.
+
 2006-01-17, Version 3.6.0
        * A config file has been added. This allows for loading only specific
          plugins.
index b03991c..ba2e144 100644 (file)
@@ -1,6 +1,6 @@
 Summary:       Statistics collection daemon for filling RRD files.
 Name:           collectd
-Version:       3.6.0
+Version:       3.6.1
 Release:       1
 Source:                http://verplant.org/collectd/%{name}-%{version}.tar.gz
 License:       GPL
@@ -96,6 +96,9 @@ rm -rf $RPM_BUILD_ROOT
 %attr(0444,root,root) %{_libdir}/%{name}/sensors.so*
 
 %changelog
+* Fri Jan 20 2006 Florian octo Forster <octo@verplant.org> 3.6.1-1
+- New upstream version
+
 * Fri Jan 20 2006 Florian octo Forster <octo@verplant.org> 3.6.0-1
 - New upstream version
 - Added config file, `collectd.conf(5)', `df.so'
index 02f9db8..a6e830f 100644 (file)
@@ -1,5 +1,5 @@
 dnl Process this file with autoconf to produce a configure script.
-AC_INIT(collectd, 3.6.0)
+AC_INIT(collectd, 3.6.1)
 AC_CONFIG_SRCDIR(src/collectd.c)
 AC_CONFIG_HEADERS(src/config.h)
 AM_INIT_AUTOMAKE(dist-bzip2)
@@ -365,11 +365,17 @@ AC_ARG_WITH(libmysql, [AS_HELP_STRING([--with-libmysql@<:@=PREFIX@:>@], [Path to
 ])
 if test "x$with_libmysql" = "xyes"
 then
-       AC_CHECK_LIB(mysqlclient, mysql_init,, [with_libmysql="no (libmysql not found)"])
+       AC_CHECK_LIB(mysqlclient, mysql_init,
+       [
+               AC_DEFINE(HAVE_LIBMYSQLCLIENT, 1, [Define to 1 if you have the mysqlclient library (-lmysqlclient).])
+       ], [with_libmysql="no (libmysql not found)"])
 fi
 if test "x$with_libmysql" = "xyes"
 then
-       AC_CHECK_HEADERS(mysql/mysql.h,, [with_libmysql="no (mysql/mysql.h not found)"])
+       AC_CHECK_HEADERS(mysql/mysql.h,
+       [
+               AC_DEFINE(HAVE_MYSQL_MYSQL_H, 1, [Define to 1 if you have the <mysql/mysql.h> header file.])
+       ], [with_libmysql="no (mysql/mysql.h not found)"])
 fi
 if test "x$with_libmysql" = "xyes"
 then
index c10fbbf..44fbd72 100644 (file)
@@ -1,3 +1,9 @@
+collectd (3.6.1-1) unstable; urgency=low
+
+  * New upstream version
+
+ -- Florian Forster <octo@verplant.org>  Fri, 20 Jan 2006 12:56:12 +0200
+
 collectd (3.6.0-1) unstable; urgency=low
 
   * New upstream version