From owner-svn-ports-head@freebsd.org Mon Jan 16 14:48:57 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 20D03CB20CD; Mon, 16 Jan 2017 14:48:57 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from mail.madpilot.net (grunt.madpilot.net [78.47.145.38]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DEC4C14CC; Mon, 16 Jan 2017 14:48:56 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from mail (mail [192.168.254.3]) by mail.madpilot.net (Postfix) with ESMTP id 3v2GMT5rk2zZtQ; Mon, 16 Jan 2017 15:48:53 +0100 (CET) Received: from mail.madpilot.net ([192.168.254.3]) by mail (mail.madpilot.net [192.168.254.3]) (amavisd-new, port 10024) with ESMTP id cmEuGIhTSudR; Mon, 16 Jan 2017 15:48:51 +0100 (CET) Received: from marvin.madpilot.net (micro.madpilot.net [88.149.173.206]) by mail.madpilot.net (Postfix) with ESMTPSA; Mon, 16 Jan 2017 15:48:51 +0100 (CET) Subject: Re: svn commit: r431651 - head/games/traindirector To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201701161447.v0GEl9jd093415@repo.freebsd.org> From: Guido Falsi Message-ID: <1216ed8d-8560-e3af-905e-7ca44354bc5f@FreeBSD.org> Date: Mon, 16 Jan 2017 15:48:51 +0100 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101 Thunderbird/45.6.0 MIME-Version: 1.0 In-Reply-To: <201701161447.v0GEl9jd093415@repo.freebsd.org> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 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: Mon, 16 Jan 2017 14:48:57 -0000 On 01/16/17 15:47, Guido Falsi wrote: > Author: madpilot > Date: Mon Jan 16 14:47:08 2017 > New Revision: 431651 > URL: https://svnweb.freebsd.org/changeset/ports/431651 > > Log: > - Also mark broken on recent 11.0-STABLE > - Correct the message, the failure is caused by libc++, not clang > > Reported by: jbeich@ > > Modified: > head/games/traindirector/Makefile > > Modified: head/games/traindirector/Makefile > ============================================================================== > --- head/games/traindirector/Makefile Mon Jan 16 14:30:50 2017 (r431650) > +++ head/games/traindirector/Makefile Mon Jan 16 14:47:08 2017 (r431651) > @@ -30,8 +30,8 @@ MAKEFILE= Makefile.fc9 > > .include > > -.if ${OPSYS} == "FreeBSD" && ${OSVERSION} >= 1200017 > -BROKEN= Fails to compile with clang 3.9.x and later > +.if ${OPSYS} == "FreeBSD" && (${OSVERSION} >= 1200017 || ${OSVERSION} >= 1100508) > +BROKEN= Fails to compile with libc++ 3.9.0 and later > .endif > > do-install: > Ooops, This is an incorrect conditonal, I noticed too late. I'll fix it shortly! -- Guido Falsi