From f87e084925dec6b82734cd2dc44695633b0c3ee5 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Mon, 11 Jun 2007 08:39:23 +0000 Subject: some more fixes for FEATURE_KLOGD mechanism --- linux/Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'linux') diff --git a/linux/Makefile b/linux/Makefile index 75d68507..39ea440c 100644 --- a/linux/Makefile +++ b/linux/Makefile @@ -41,6 +41,11 @@ FEATURE_RFC3195=0 # Enable multithreading via pthreads (experimental!) FEATURE_PTHREADS=1 +# This feature indicates if klogd functionality +# should be integrated. If it is switched off, klogd +# is still compiled, but it is an empty shell. +FEATURE_KLOGD=1 + # Enable debug mode (much slower code) FEATURE_DEBUG=0 @@ -72,6 +77,10 @@ ifeq ($(strip $(FEATURE_DB)), 1) WITHDB=-DWITH_DB endif +ifeq ($(strip $(FEATURE_KLOGD)), 1) + FEATKLOGD=-DFEATURE_KLOGD +endif + ifeq ($(strip $(FEATURE_REGEXP)), 1) F_REGEXP=-DFEATURE_REGEXP endif -- cgit