summaryrefslogtreecommitdiffstats
path: root/freebsd
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2005-10-12 14:11:02 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2005-10-12 14:11:02 +0000
commit1af199ccafdf68e0a1aefea44b9a6a47908f1cad (patch)
tree99e341f98d188f9c14beb8674fa78807619f1122 /freebsd
parent7e10c67a1737d19f5038ad1164b29804d47d9bce (diff)
downloadrsyslog-1af199ccafdf68e0a1aefea44b9a6a47908f1cad.tar.gz
rsyslog-1af199ccafdf68e0a1aefea44b9a6a47908f1cad.tar.xz
rsyslog-1af199ccafdf68e0a1aefea44b9a6a47908f1cad.zip
final touches for 1.11.0
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 a42edd08..27b2dac7 100644
--- a/freebsd/Makefile
+++ b/freebsd/Makefile
@@ -28,6 +28,9 @@ FEATURE_DB=1
# Enable regular expressions
FEATURE_REGEXP=1
+# Enable RFC 3195 support (REQUIRES LIBLOGGING 0.6.0 or above!)
+FEATURE_RFC3195=0
+
# Enable debug mode (much slower code)
FEATURE_DEBUG=0
@@ -55,6 +58,10 @@ MANDIR = /usr/share/man
F_REGEXP=-DFEATURE_REGEXP
.endif
+.if $(FEATURE_RFC3195) == 1
+ F_RFC3195=-DFEATURE_RFC3195
+.endif
+
.if $(FEATURE_DEBUG) == 0
DBG=-DNDEBUG
.endif