From owner-svn-ports-all@FreeBSD.ORG Wed Apr 15 14:13:10 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 75B59F41; Wed, 15 Apr 2015 14:13:10 +0000 (UTC) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4A31F64E; Wed, 15 Apr 2015 14:13:09 +0000 (UTC) Received: from [10.31.9.118] (unknown [213.225.137.129]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id 8E88143C35; Wed, 15 Apr 2015 09:13:08 -0500 (CDT) Message-ID: <552E71F3.1030005@marino.st> Date: Wed, 15 Apr 2015 16:13:07 +0200 From: John Marino Reply-To: marino@freebsd.org User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: Dmitry Marakasov , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r384052 - in head/games/tomenet: . files References: <201504151354.t3FDshh1086098@svn.freebsd.org> In-Reply-To: <201504151354.t3FDshh1086098@svn.freebsd.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit 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: Wed, 15 Apr 2015 14:13:10 -0000 On 4/15/2015 15:54, Dmitry Marakasov wrote: > Author: amdmi3 > Date: Wed Apr 15 13:54:43 2015 > New Revision: 384052 > URL: https://svnweb.freebsd.org/changeset/ports/384052 > > Log: > - Fix build on < 10.x > - Respect CC > > Approved by: portmgr blanket > > Modified: > head/games/tomenet/Makefile > head/games/tomenet/files/patch-makefile > > Modified: head/games/tomenet/Makefile > ============================================================================== > --- head/games/tomenet/Makefile Wed Apr 15 13:46:34 2015 (r384051) > +++ head/games/tomenet/Makefile Wed Apr 15 13:54:43 2015 (r384052) > @@ -31,6 +31,12 @@ OPTIONS_DEFINE= DOCS > > .include > > +.if ${OSVERSION} < 1000000 > +LIB_DEPENDS+= libexecinfo.so:${PORTSDIR}/devel/libexecinfo > +CFLAGS+= -I${LOCALBASE}/include > +LIBS+= -L${LOCALBASE}/lib > +.endif > + 1) OSVERSION is used without OPSYS here 2) it matters because DragonFly needs libexecinfo 3) why wasn't USES+= libexec used? Thanks, John