summaryrefslogtreecommitdiffstats
path: root/freebsd
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2007-06-11 08:29:27 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2007-06-11 08:29:27 +0000
commit81378442ff2a89b20595ee52a25b21383df7bf9d (patch)
treef4484d4b8ad290fbd52fb38992d8cdf7339089cf /freebsd
parent81ae51f0393e75b0e65c9b1e84d399e54f2dd7c4 (diff)
downloadrsyslog-81378442ff2a89b20595ee52a25b21383df7bf9d.tar.gz
rsyslog-81378442ff2a89b20595ee52a25b21383df7bf9d.tar.xz
rsyslog-81378442ff2a89b20595ee52a25b21383df7bf9d.zip
changes to make klogd integration compile under freebsd
Diffstat (limited to 'freebsd')
-rw-r--r--freebsd/Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/freebsd/Makefile b/freebsd/Makefile
index 7b05766f..2170544f 100644
--- a/freebsd/Makefile
+++ b/freebsd/Makefile
@@ -39,6 +39,9 @@ FEATURE_PTHREADS=1
# results in moderate savings of network traffic.
FEATURE_NETZIP=1
+# For Freebsd, we disable klogd
+FEATURE_KLOGD=0
+
# Enable debug mode (much slower code)
FEATURE_DEBUG=0
@@ -71,6 +74,10 @@ MANDIR = /usr/share/man
WITHDB=-DWITH_DB
.endif
+.if $(FEATURE_KLOGD) == 1
+ WITHDB=-DWITH_KLOGD
+.endif
+
.if $(FEATURE_NETZIP) == 1
NETZIP=-DWITH_DB
.endif