From owner-svn-ports-head@FreeBSD.ORG Sat Sep 1 02:43:51 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2B448106564A; Sat, 1 Sep 2012 02:43:51 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 17A4A8FC0A; Sat, 1 Sep 2012 02:43:51 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q812hob9036139; Sat, 1 Sep 2012 02:43:50 GMT (envelope-from cy@svn.freebsd.org) Received: (from cy@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q812hoZT036136; Sat, 1 Sep 2012 02:43:50 GMT (envelope-from cy@svn.freebsd.org) Message-Id: <201209010243.q812hoZT036136@svn.freebsd.org> From: Cy Schubert Date: Sat, 1 Sep 2012 02:43:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r303455 - head/sysutils/syslog-ng X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Sep 2012 02:43:51 -0000 Author: cy Date: Sat Sep 1 02:43:50 2012 New Revision: 303455 URL: http://svn.freebsd.org/changeset/ports/303455 Log: Fails to build without SPOOF support. Mark BROKEN for the time being. Modified: head/sysutils/syslog-ng/Makefile Modified: head/sysutils/syslog-ng/Makefile ============================================================================== --- head/sysutils/syslog-ng/Makefile Sat Sep 1 00:13:44 2012 (r303454) +++ head/sysutils/syslog-ng/Makefile Sat Sep 1 02:43:50 2012 (r303455) @@ -22,7 +22,7 @@ OPTIONS= SYS_SSL "Build with OpenSSL sup 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