From owner-svn-ports-all@FreeBSD.ORG Thu May 14 09:23:06 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 24D48F17; Thu, 14 May 2015 09:23:06 +0000 (UTC) Received: from mail.issp.ac.ru (mail.issp.ac.ru [77.236.34.3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "relay.issp.ac.ru", Issuer "relay.issp.ac.ru" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 94E7C165F; Thu, 14 May 2015 09:23:05 +0000 (UTC) Received: from mercury.issp.ac.ru [77.236.34.155:57731] (HELO/EHLO mercury.ph.man.ac.uk, authenticated with PLAIN) by mail.issp.ac.ru with ESMTP/inet id t4E9JhDT007171 (using TLSv1/SSLv3, with cipher DHE-RSA-AES256-GCM-SHA384 (256 bits), verified NO) Thu, 14 May 2015 12:19:44 +0300 (MSK) X-Authentication-Warning: mail.issp.ac.ru: Host mercury.issp.ac.ru [77.236.34.155] claimed to be mercury.ph.man.ac.uk From: Max Brazhnikov To: Dmitry Marakasov Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r386150 - head/games/darkplaces Date: Thu, 14 May 2015 09:19:02 +0000 Message-ID: <11186066.LFuKROToQk@mercury.ph.man.ac.uk> User-Agent: KMail/4.14.3 (FreeBSD/10.1-STABLE; KDE/4.14.3; amd64; ; ) In-Reply-To: <201505121352.t4CDq7Iu079299@svn.freebsd.org> References: <201505121352.t4CDq7Iu079299@svn.freebsd.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="UTF-8" X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 May 2015 09:23:06 -0000 On Tue, 12 May 2015 13:52:07 +0000 (UTC)Tue May 12 13:52:06 2015 Dmitry Marakasov wrote: > Author: amdmi3 > Date: Tue May 12 13:52:06 2015 > New Revision: 386150 > URL: https://svnweb.freebsd.org/changeset/ports/386150 > > Log: > - Fix build on < 10.x Thanks! I was aware of the problem, but forgot to commit the fix along with update. > > Approved by: portmgr blanket > > Modified: > head/games/darkplaces/Makefile > > Modified: head/games/darkplaces/Makefile > ============================================================================== > --- head/games/darkplaces/Makefile Tue May 12 13:08:04 2015 (r386149) > +++ head/games/darkplaces/Makefile Tue May 12 13:52:06 2015 (r386150) > @@ -38,6 +38,10 @@ SERVER_DESC= Build dedicated server > > .include > > +.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000 > +USE_GCC= yes # internal compiler error on base gcc > +.endif > + > .if ${PORT_OPTIONS:MGLX} || ${PORT_OPTIONS:MSDL} > USE_GL= glu > PLIST_SUB+= CLIENT="" >