summaryrefslogtreecommitdiffstats
path: root/freebsd
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2005-10-12 15:34:33 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2005-10-12 15:34:33 +0000
commit4ae1f8a765772d21446ad7f8158fd9d882d06c40 (patch)
treee888791010e3a67e753bd257ae0d17ab400ceb0e /freebsd
parent1af199ccafdf68e0a1aefea44b9a6a47908f1cad (diff)
downloadrsyslog-4ae1f8a765772d21446ad7f8158fd9d882d06c40.tar.gz
rsyslog-4ae1f8a765772d21446ad7f8158fd9d882d06c40.tar.xz
rsyslog-4ae1f8a765772d21446ad7f8158fd9d882d06c40.zip
fixed some make issues when compiling without rfc 3195 supportv1-11-0
Diffstat (limited to 'freebsd')
-rw-r--r--freebsd/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/freebsd/Makefile b/freebsd/Makefile
index 27b2dac7..bd099f56 100644
--- a/freebsd/Makefile
+++ b/freebsd/Makefile
@@ -34,6 +34,15 @@ FEATURE_RFC3195=0
# Enable debug mode (much slower code)
FEATURE_DEBUG=0
+# The following defines tell us where liblogging is located. This
+# is only needed if we build with RFC 3195 support. By default,
+# liblogging is expected to be present in the our parent directory.
+#
+# THESE PATHES MUST ONLY BE SET IF RSYSLOG IS BUILD WITH
+# RFC 3195 SUPPORT!
+LIBLOGGING_INC=-I../../liblogging/src
+LIBLOGGING_BIN=../../liblogging/src/linux/liblogging.a
+
#############################################################
# END OF USER SETTINGS #
# -------------------- #
@@ -60,6 +69,9 @@ MANDIR = /usr/share/man
.if $(FEATURE_RFC3195) == 1
F_RFC3195=-DFEATURE_RFC3195
+.else
+ LIBLOGGING_INC=
+ LIBLOGGING_BIN=
.endif
.if $(FEATURE_DEBUG) == 0