656504ee5d
Rsyslog is an enhanced multi-threaded syslogd with a focus on security and reliability. Among others, it offers support for on-demand disk buffering, reliable syslog over TCP, SSL, TLS and RELP, writing to databases (MySQL, PostgreSQL, Oracle, and many more), email alerting, fully configurable output formats (including high-precision timestamps), the ability to filter on any part of the syslog message, on-the-wire message compression, and the ability to convert text files to syslog. It is a drop-in replacement for stock syslogd and able to work with the same configuration file syntax. Its advanced features make it suitable for enterprise-class, encryption protected syslog relay chains while at the same time being very easy to setup for the novice user. initial port from todd@, improved by sthen@ and me
12 lines
490 B
Plaintext
12 lines
490 B
Plaintext
$OpenBSD: patch-configure_ac,v 1.1.1.1 2010/07/29 21:40:21 steven Exp $
|
|
--- configure.ac.orig Fri Jul 23 22:03:50 2010
|
|
+++ configure.ac Fri Jul 23 22:04:32 2010
|
|
@@ -247,6 +247,7 @@ if test "x$enable_pthreads" != "xno"; then
|
|
PTHREADS_LIBS="-lpthread"
|
|
case "${os_type}" in
|
|
solaris) PTHREADS_CFLAGS="-pthreads" ;;
|
|
+ openbsd) PTHREADS_CFLAGS="-pthread" PTHREADS_LIBS="-pthread" ;;
|
|
*) PTHREADS_CFLAGS="-pthread" ;;
|
|
esac
|
|
AC_SUBST(PTHREADS_LIBS)
|