summaryrefslogtreecommitdiffstats
path: root/configure.ac
Commit message (Collapse)AuthorAgeFilesLines
...
* - I found out that we finally have problems with the (somewhat recursive)Rainer Gerhards2007-08-031-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | call to logerror() that many of the modules do. I have not tried it, but I think things will become wild when we compile without pthread support. Threading prevents full recursion, so we have not seen any bad effects so far. However, the problems that I experienced in ommysl (that caused me to re-structure startWorker()) are actually rooted in this issue. I first thought to fix it via a module interace, but I now came to the conclusion that it is not more effort and much cleaner to do an internal error buffering class. This is implemented in errbuf.c/h. - I just noticed that this is not actually an error buf, but the core of an input module for all internal messages. As such, I implement it now as iminternal.c/h. Of course, there is no input module interface yet designed, but that doesn't matter. Worst-case, I need to re-write the im, best case I can use the im (at least partly) to define the interface. - added a few functions to the linkedlist class - error messages during startup are now buffered - so we do no longer need to think about how emergency logging might work. Actually, these are logged to whatever is instatiated in the log file. This enhances the chance that we will be able to drop the error message somewhere it is seen.
* bumped version numberRainer Gerhards2007-08-011-2/+2
|
* enhanced $Include to allow inclusion of a complete directoryRainer Gerhards2007-08-011-1/+1
|
* - applied a patch from mildew to prevent rsyslogd from freezing under heavyRainer Gerhards2007-08-011-0/+1
| | | | | load. This could happen when the queue was full. Now, we drop messages but rsyslogd remains active.
* bumping up version numberRainer Gerhards2007-07-301-2/+2
|
* - added omsr object (objomsr.c, objomsr.h) - template request for outputRainer Gerhards2007-07-271-2/+2
| | | | modules
* bumping version numberRainer Gerhards2007-07-251-2/+2
|
* bumped version numberRainer Gerhards2007-07-231-2/+2
|
* bumped version numberRainer Gerhards2007-07-201-2/+2
|
* applied patch from Bartosz Kuźma to fix portability bug in configure.acRainer Gerhards2007-07-191-2/+2
|
* more cleanup; restored compatibility to non-gcc compilersRainer Gerhards2007-07-181-1/+1
|
* applied cleanup patch by Peter VrabecRainer Gerhards2007-07-181-1/+3
|
* bumped version numberRainer Gerhards2007-07-181-2/+2
|
* bumped version number to 1.17.0Rainer Gerhards2007-07-171-2/+2
|
* improved AllowedSender code and portability - thanks to mildew@gmail.comRainer Gerhards2007-07-171-0/+8
|
* added support (checks) for inlineRainer Gerhards2007-07-171-0/+1
|
* bumped version numberRainer Gerhards2007-07-151-2/+2
|
* disabled a check that I do not get right, so that I can releaseRainer Gerhards2007-07-131-8/+9
|
* made "make dist" workRainer Gerhards2007-07-131-15/+92
|
* remove file, its autotools output file and does not belong in CVSRainer Gerhards2007-07-111-4/+16
|
* removed SYSV preprocessor macro; replaced with autotools equivalentRainer Gerhards2007-07-111-2/+1
|
* upgrading to autotools build system - thank Peter Vrabec for patches andRainer Gerhards2007-07-101-0/+179
the idea