summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 4516a47)
raw | patch | inline | side by side (parent: 4516a47)
author | octo <octo> | |
Fri, 20 Jan 2006 17:30:19 +0000 (17:30 +0000) | ||
committer | octo <octo> | |
Fri, 20 Jan 2006 17:30:19 +0000 (17:30 +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 838d16f6ca71abb450a7aad479bf4e414ef98d03..bd8bd412b02dabe0c247d5c2d3d349ebc9aeb92a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
+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.
diff --git a/collectd.spec b/collectd.spec
index b03991cfc1439cca6383798fd84fe4002722c67e..ba2e144870f7c769aabfef17d0e2f0118f433d29 100644 (file)
--- a/collectd.spec
+++ b/collectd.spec
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
%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'
diff --git a/configure.in b/configure.in
index 02f9db861dd57121c7d0383f09bbafabbac9a235..a6e830fb718db7b3544740a2f059adc44caeaf5d 100644 (file)
--- a/configure.in
+++ b/configure.in
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
diff --git a/debian/changelog b/debian/changelog
index c10fbbf98a7e726892b46a3f2003e4966b903875..44fbd720efcce43ea8ea72ea6889092ab99cd6e3 100644 (file)
--- a/debian/changelog
+++ b/debian/changelog
+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