From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 17 01:50:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 92172106 for ; Tue, 17 Sep 2013 01:50:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 808A320B8 for ; Tue, 17 Sep 2013 01:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r8H1o1Cb039220 for ; Tue, 17 Sep 2013 01:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8H1o1Ha039218; Tue, 17 Sep 2013 01:50:01 GMT (envelope-from gnats) Date: Tue, 17 Sep 2013 01:50:01 GMT Message-Id: <201309170150.r8H1o1Ha039218@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Craig Leres Subject: Re: ports/182127: security/bro fails to build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Craig Leres List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Sep 2013 01:50:01 -0000 The following reply was made to PR ports/182127; it has been noted by GNATS. From: Craig Leres To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/182127: security/bro fails to build Date: Mon, 16 Sep 2013 18:46:21 -0700 This is a multi-part message in MIME format. --------------070907090803060802010000 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit I'm running 9.1-RELEASE: fun 4 % uname -a FreeBSD fun.ee.lbl.gov 9.1-RELEASE FreeBSD 9.1-RELEASE #5 r15: Sat Apr 20 20:56:40 PDT 2013 leres@fun.ee.lbl.gov:/sys/amd64/compile/LBL amd64 fun 5 % gcc -v Using built-in specs. Target: amd64-undermydesk-freebsd Configured with: FreeBSD/amd64 system compiler Thread model: posix gcc version 4.2.1 20070831 patched [FreeBSD] fun 6 % clang -v FreeBSD clang version 3.1 (branches/release_31 156863) 20120523 Target: x86_64-unknown-freebsd9.0 Thread model: posix If I force the build to use clang (see attached) and also turn on MAKE_JOBS_UNSAFE, I can build the port without errors. Craig --------------070907090803060802010000 Content-Type: text/plain; charset=us-ascii; name="patch.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="patch.txt" --- Makefile.orig 2013-09-16 18:35:36.000000000 -0700 +++ Makefile 2013-09-16 18:40:12.000000000 -0700 @@ -27,6 +27,11 @@ BROCCOLI_DESC= Build support for libbroccoli communications OPTIONS_EXCLUDE=NLS DOCS +CC= clang +CXX= clang++ +CPP= clang-cpp +MAKE_JOBS_UNSAFE=yes + .include .if ${PORT_OPTIONS:MBROCCOLI} --------------070907090803060802010000--