diff options
author | Cy Schubert <cy@FreeBSD.org> | 2012-09-01 02:43:50 +0000 |
---|---|---|
committer | Cy Schubert <cy@FreeBSD.org> | 2012-09-01 02:43:50 +0000 |
commit | bd4b523f3b8c2f5bf3806cc470e10f58ec11546e (patch) | |
tree | 572f40238ab009f6770e205e381d77df217a7704 /sysutils/syslog-ng | |
parent | 159b89d30eb0857e46d1ff6c7462da151f0e1da4 (diff) |
Notes
Diffstat (limited to 'sysutils/syslog-ng')
-rw-r--r-- | sysutils/syslog-ng/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sysutils/syslog-ng/Makefile b/sysutils/syslog-ng/Makefile index 2a64f801cdda..a6917edbec4a 100644 --- a/sysutils/syslog-ng/Makefile +++ b/sysutils/syslog-ng/Makefile @@ -22,7 +22,7 @@ OPTIONS= SYS_SSL "Build with OpenSSL support (from system)" off \ PORTS_SSL "Build with OpenSSL support (from ports)" on \ TCP_WRAPPERS "Build with TCP Wrappers" off \ SQL "Build with database (libdbi) support" off \ - SPOOF "Build with spoof source support" off \ + SPOOF "Build with spoof source support" on \ IPV6 "Build with IPV6 support" on \ PCRE "Build with PCRE support" on \ JSON_C "Build with JSON-C support" off \ @@ -46,6 +46,10 @@ SUB_FILES= pkg-message CONFIGURE_ARGS= --sysconfdir=${LOCALBASE}/etc --localstatedir=/var/db \ --enable-dynamic-linking +.if !defined(WITH_SPOOF) +BROKEN= Fails to build without SPOOF support. +.endif + .if defined(WITH_SYS_SSL) && defined(WITH_PORTS_SSL) BROKEN= SYS_SSL and PORTS_SSL are mutually exclusive .endif |