pkgsrc-wip/rsyslog/options.mk
Bartosz Kuzma 9a942aa8a9 Rsyslog is an enhanced multi-threaded syslogd supporting, among others,
MySQL, syslog/tcp, RFC 3195, permitted sender lists, filtering on any
message part, and fine grain output format control. It is quite compatible
to stock sysklogd and can be used as a drop-in replacement. 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. An optional web interface - phpLogCon - can be used to
visualize all data online.

On NetBSD 3.99.10 and Slackware 10.1 compiling and works fine.
2005-11-21 20:50:32 +00:00

19 lines
485 B
Makefile

# $NetBSD: options.mk,v 1.1.1.1 2005/11/21 20:50:32 bartoszkuzma Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.rsyslog
PKG_SUPPORTED_OPTIONS= largefile mysql
PKG_SUGGESTED_OPTIONS= largefile
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mlargefile)
CFLAGS+= -DWITH_LARGEFILE
FEATURE_LARGEFILE= # empty
.endif
.if !empty(PKG_OPTIONS:Mmysql)
CFLAGS+= -DWITH_DB
LDFLAGS+= -lmysqlclient -L/usr/pkg/lib/mysql
FEATURE_DB= # empty
.include "../../mk/mysql.buildlink3.mk"
.endif