summaryrefslogtreecommitdiffstats
path: root/configure.ac
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Improve mysql configure check (for unusual paths)Michael Biebl2009-02-241-4/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove AC_CHECK_HEADERS([mysql/mysql.h],...) as this was causing pain for users where the mysql headers are not installed in the system include directory. It was superfluous anyways, as we check for mysql_config and set the include path to the correct directory. Update ommysql.c to use #include <mysql.h>, as mysql_config will set the include path to /path/to/include/mysql/ so <mysql/mysql.h> would not work. Remove errmsg.h include as it is not used.
| * | Separate macro file for atomic operationsMichael Biebl2009-02-241-46/+1
| | | | | | | | | | | | | | | | | | To unclutter configure.ac and to make it easier re-usable, move the check for atomic operations into a separate m4 macro file and call the macro RS_ATOMIC_OPERATIONS (RS for RSyslog)
| * | Split the m4 macros into a separate directoryMichael Biebl2009-02-241-0/+1
| | |
| * | Use pkg-config for GnuTLS configure checkMichael Biebl2009-02-241-22/+2
| | | | | | | | | | | | | | | | | | Use PKG_CHECK_MODULES instead of libgnutls-config to get the compilation flags (vastly simpler). Set minimum version to 2.4.2, as that is the oldest version I could test with.
| * | Call PKG_PROG_PKG_CONFIG m4 macro unconditionally.Michael Biebl2009-02-241-0/+2
| | | | | | | | | | | | | | | | | | | | | As all the calls to PKG_CHECK_MODULES are conditional, it can happen that PKG_PROG_PKG_CONFIG is not called (i.e. if you not use --enable-relp). So we enforce a check for pkg-config by adding it to the global checks.
| * | make all cflags and libs variables uppercaseMichael Biebl2009-02-241-36/+36
| | | | | | | | | | | | | | | | | | pkg-config uses uppercase for its _CFLAGS and _LIBS variable names. So we follow suit and convert all _cflags and _libs variables to uppercase for more consistency.
| * | prepared for 3.21.10 releasev3.21.10Rainer Gerhards2009-02-021-1/+1
| | |
| * | Merge branch 'v3-stable' into betav3.21.9Rainer Gerhards2008-12-041-1/+1
| |\| | | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html plugins/imudp/imudp.c
| | * security fix: imudp emitted a message when a non-permitted sender...v3.20.2Rainer Gerhards2008-12-041-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | ...tried to send a message to it. This behaviour is operator-configurable. If enabled, a message was emitted each time. That way an attacker could effectively fill the disk via this facility. The message is now emitted only once in a minute (this currently is a hard-coded limit, if someone comes up with a good reason to make it configurable, we will probably do that).
* | | preparing for 4.1.4 releasev4.1.4Rainer Gerhards2009-01-291-1/+1
| | |
* | | preparing for 4.1.3 releasev4.1.3Rainer Gerhards2008-12-161-1/+1
| | |
* | | Merge branch 'beta'Rainer Gerhards2008-12-041-1/+1
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html doc/rsyslog_conf.html plugins/imudp/imudp.c runtime/rsyslog.h
| * | Merge branch 'v3-stable' into betaRainer Gerhards2008-12-041-1/+1
| |\| | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html
| | * added interface function to nsd_gtls needed for ACL controlRainer Gerhards2008-12-011-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | The legacy ACL system needs access to the remote sockaddr_storage data structure. This has been implemented for the ptcp driver and now follows for gtls. See recent commits for reason. We also moved up the version numbers in preparation of the release.
| * | Merge branch 'master' into betaRainer Gerhards2008-11-111-3/+108
| |\ \ | | |/ | |/| | | | | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html
| * | bumped version number, preparing to be new stable branchRainer Gerhards2008-10-281-1/+1
| | |
| * | Merge branch 'v3-stable' into betaRainer Gerhards2008-09-021-1/+1
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html
| | * | bumped version numberRainer Gerhards2008-09-011-1/+1
| | | |
| | * | preparing for 3.18.3v3.18.3Rainer Gerhards2008-08-151-1/+1
| | | |
| | * | fixed cross-platform compile problem introduced with recent changeRainer Gerhards2008-08-151-1/+1
| | | | | | | | | | | | | | | | ...which fixed the imfile segfault issue.
| | * | bugfix: imfile could cause a segfault upon rsyslogd HUP and terminationRainer Gerhards2008-08-141-1/+1
| | | | | | | | | | | | | | | | | | | | Thanks to lperr for an excellent bug report that helped detect this problem.
| | * | enhanced ommysql to support custom port to connect to serverRainer Gerhards2008-08-121-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Port can be set via new $ActionOmmysqlServerPort config directive Note: this was a very minor change and thus deemed appropriate to be done in the stable release.
| | * | bugfix: misspelled config directive + bumped version numberRainer Gerhards2008-08-121-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously was $MainMsgQueueWorkeTimeoutrThreadShutdown, is now $MainMsgQueueWorkerTimeoutThreadShutdown. Note that the misspelled directive is not preserved - if the misspelled directive was used (which I consider highly unlikely), the config file must be changed. Thanks to lperr for reporting the bug.
| | * | bumped version numberRainer Gerhards2008-07-211-1/+1
| | | |
| | * | preparing for 3.18.1v3.18.1Rainer Gerhards2008-07-211-1/+1
| | | |
* | | | added ability to drop privilegesRainer Gerhards2008-11-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Added $PrivDropToGroup, $PrivDropToUser, $PrivDropToGroupID, $PrivDropToUserID config directives to enable dropping privileges. This is an effort to provide a security enhancement. For the limits of this approach, see http://wiki.rsyslog.com/index.php/Security
* | | | added configuration directive "HUPisRestart"Rainer Gerhards2008-10-231-1/+1
| | | | | | | | | | | | | | | | | | | | ...which enables to configure HUP to be either a full restart or "just" a leightweight way to close open files
* | | | Merge branch 'master' into nextmasterRainer Gerhards2008-10-221-1/+23
|\ \ \ \ | | |_|/ | |/| | | | | | | | | | | | | | | | | | Conflicts: ChangeLog configure.ac
| * | | preparing for 3.21.6v3.21.6Rainer Gerhards2008-10-221-1/+1
| | | | | | | | | | | | | | | | | | | | plus solving a compile problem for im3195 (which is not used in practice, thus this did not show up before...)
| * | | added capability to support multiple module search pathes.Marius Tomaschewski2008-10-201-0/+22
| | | | | | | | | | | | | | | | Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
* | | | bumped interface version number to reflect change to message parsingRainer Gerhards2008-10-091-1/+1
| | | |
* | | | performance-optimized imudpRainer Gerhards2008-10-021-2/+2
|/ / /
* | | re-enabled gcc builtin atomic operations and added a proper ./configure checkRainer Gerhards2008-09-181-0/+50
| | |
* | | updated project status page & bumped version numberRainer Gerhards2008-09-041-1/+1
| | |
* | | bumped version numberRainer Gerhards2008-08-131-1/+1
| | |
* | | prepared for 3.21.2v3.21.3Rainer Gerhards2008-08-131-1/+1
| | |
* | | updated status doc after recent stable releasesRainer Gerhards2008-08-081-1/+1
| | |
* | | minor housekeepingRainer Gerhards2008-08-071-1/+1
| | |
* | | bugfix: IPv6 addresses could not be specified in forwarding actionsRainer Gerhards2008-08-051-1/+1
| | | | | | | | | | | | | | | | | | New syntax @[addr]:port introduced to enable that. Root problem was IPv6 addresses contain colons. Also somewhat enhanced debugging messages.
* | | enhanced troubleshooting documentationRainer Gerhards2008-08-041-1/+1
| | |
* | | added $InputUnixListenSocketHostName config directiveRainer Gerhards2008-08-011-1/+1
| | | | | | | | | | | | | | | | | | It permits to override the hostname being used on a local unix socket. This is useful for differentiating "hosts" running in several jails. Feature was suggested by David Darville, thanks for the suggestion.
* | | fixed some minor nits in preperation for 3.21.1Rainer Gerhards2008-07-291-2/+2
| | |
* | | enhanced configuration file error reporting and verificationRainer Gerhards2008-07-291-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - enhanced config file checking - no active actions are detected - added -N rsyslogd command line option for a config validation run (which does not execute actual syslogd code and does not interfere with a running instance) - somewhat improved emergency configuration. It is now also selected if the config contains no active actions - rsyslogd error messages are now reported to stderr by default. can be turned off by the new "$ErrorMessagesToStderr off" directive Thanks to HKS for suggesting these new features.
* | | begun implementing a diagnostic plugin (not yet completed)Rainer Gerhards2008-07-281-1/+20
| | |
* | | Merge branch 'beta'Rainer Gerhards2008-07-181-0/+5
|\| |
| * | Merge branch 'v3-stable' into betaRainer Gerhards2008-07-181-0/+5
| |\| | | | | | | | | | | | | | | | | | | Conflicts: doc/property_replacer.html tools/syslogd.c
| | * bugfix: imklog module was not correctly compiled for GNU/kFreeBSDPetr Salinger2008-07-181-0/+5
| | | | | | | | | | | | Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
| | * prepared for 3.18.0 releasev3.18.0Rainer Gerhards2008-07-111-3/+1
| | |
| | * Merge branch 'v3-stable' into betaRainer Gerhards2008-07-111-0/+2
| | |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html
| | | * prepared for 3.16.3 releaseRainer Gerhards2008-07-111-1/+1
| | | |