diff options
Diffstat (limited to 'freebsd')
-rw-r--r-- | freebsd/Makefile | 7 |
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 |