summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2010-04-23 13:02:41 +0100
committerRainer Gerhards <rgerhards@adiscon.com>2010-04-23 13:02:41 +0100
commit24ad305375cc6832e5b41883ad90816d723841b0 (patch)
tree3300206f899c7699dbe428a75bfae2e7717b131e
parentad2fe36723845ba20d30f14bada37d59e6e90d16 (diff)
parentbbde403b46bd94cb8900562d8cfd3e0540913730 (diff)
downloadrsyslog-24ad305375cc6832e5b41883ad90816d723841b0.tar.gz
rsyslog-24ad305375cc6832e5b41883ad90816d723841b0.tar.xz
rsyslog-24ad305375cc6832e5b41883ad90816d723841b0.zip
Merge branch 'v4-devel' into master
Conflicts: ChangeLog configure.ac doc/manual.html
-rw-r--r--ChangeLog5
-rw-r--r--runtime/atomic.h2
-rw-r--r--runtime/rsyslog.h2
3 files changed, 5 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 591293bc..cc205a76 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,7 @@
Version 5.5.4 [DEVEL] (rgerhards), 2010-04-??
- bugfix: netstream ptcp support class was not correctly build on systems
without epoll() support
+- bugfix: [NOT YET FIXED] segfault on Solaris/Sparc
---------------------------------------------------------------------------
Version 5.5.3 [DEVEL] (rgerhards), 2010-04-09
- added basic but functional support for Solaris
@@ -403,7 +404,9 @@ increase.
- increased ompgsql performance by adapting to new transactional
output module interface
---------------------------------------------------------------------------
-Version 4.7.1 [v4-devel] (rgerhards), 2010-04-??
+Version 4.7.2 [v4-devel] (rgerhards), 2010-04-??
+---------------------------------------------------------------------------
+Version 4.7.1 [v4-devel] (rgerhards), 2010-04-22
- Solaris support much improved -- was not truely usable in 4.7.0
Solaris is no longer supported in imklog, but rather there is a new
plugin imsolaris, which is used to pull local log sources on a Solaris
diff --git a/runtime/atomic.h b/runtime/atomic.h
index f1152daf..cdcb1410 100644
--- a/runtime/atomic.h
+++ b/runtime/atomic.h
@@ -31,8 +31,6 @@
* A copy of the GPL can be found in the file "COPYING" in this distribution.
* A copy of the LGPL can be found in the file "COPYING.LESSER" in this distribution.
*/
-#include "config.h" /* autotools! */
-
#ifndef INCLUDED_ATOMIC_H
#define INCLUDED_ATOMIC_H
diff --git a/runtime/rsyslog.h b/runtime/rsyslog.h
index cc5c845e..0b4fbfed 100644
--- a/runtime/rsyslog.h
+++ b/runtime/rsyslog.h
@@ -149,7 +149,7 @@ typedef struct strmLstnPortList_s strmLstnPortList_t; // TODO: rename?
typedef void nsdsel_t;
typedef void nsdpoll_t;
#else
- typedef obj_t obj_t_ptr;
+ typedef obj_t *obj_t_ptr;
typedef obj_t nsd_t;
typedef obj_t nsdsel_t;
typedef obj_t nsdpoll_t;