From d78b0ebd52e5527d62834158f52127dae61fc790 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Thu, 6 Oct 2005 10:08:45 +0000 Subject: begin implementing RFC 3195 support --- linux/Makefile | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'linux/Makefile') diff --git a/linux/Makefile b/linux/Makefile index 7b1c99e5..4ec862f4 100644 --- a/linux/Makefile +++ b/linux/Makefile @@ -30,6 +30,9 @@ FEATURE_DB=0 # Enable regular expressions FEATURE_REGEXP=1 +# Enable RFC 3195 support (REQUIRES LIBLOGGING 0.6.0 or above!) +FEATURE_RFC3195=1 + # Enable debug mode (much slower code) FEATURE_DEBUG=1 @@ -56,6 +59,10 @@ ifeq ($(strip $(FEATURE_REGEXP)), 1) F_REGEXP=-DFEATURE_REGEXP endif +ifeq ($(strip $(FEATURE_RFC3195)), 1) + F_RFC3195=-DFEATURE_RFC3195 +endif + ifeq ($(strip $(FEATURE_DEBUG)), 0) DBG=-DNDEBUG endif -- cgit