aboutsummaryrefslogtreecommitdiffstats
path: root/sysutils
diff options
context:
space:
mode:
authorcy <cy@FreeBSD.org>2012-09-01 10:43:50 +0800
committercy <cy@FreeBSD.org>2012-09-01 10:43:50 +0800
commit88c93b8c693a298afdbc56f385acf79d9875c22b (patch)
tree572f40238ab009f6770e205e381d77df217a7704 /sysutils
parentfbc39c960802e6701e1a91f030da5c843c7de5e2 (diff)
downloadfreebsd-ports-gnome-88c93b8c693a298afdbc56f385acf79d9875c22b.tar.gz
freebsd-ports-gnome-88c93b8c693a298afdbc56f385acf79d9875c22b.tar.zst
freebsd-ports-gnome-88c93b8c693a298afdbc56f385acf79d9875c22b.zip
Fails to build without SPOOF support. Mark BROKEN for the time being.
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/syslog-ng/Makefile6
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