From owner-svn-ports-head@FreeBSD.ORG Sat Sep 21 02:45:36 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id 584E181A; Sat, 21 Sep 2013 02:45:36 +0000 (UTC) Date: Sat, 21 Sep 2013 02:45:36 +0000 From: Alexey Dokuchaev To: William Grzybowski Subject: Re: svn commit: r327649 - in head/net/libnatpmp: . files Message-ID: <20130921024536.GB19307@FreeBSD.org> References: <201309192142.r8JLgO5A046568@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201309192142.r8JLgO5A046568@svn.freebsd.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 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, 21 Sep 2013 02:45:36 -0000 On Thu, Sep 19, 2013 at 09:42:24PM +0000, William Grzybowski wrote: > New Revision: 327649 > URL: http://svnweb.freebsd.org/changeset/ports/327649 > > Log: > net/libnatpmp: fix build without gcc > > - Fix build without gcc [1] [...] > +--- Makefile.orig 2013-09-20 03:13:32.533531973 +0800 > ++++ Makefile 2013-09-20 03:13:40.954532152 +0800 > +@@ -5,7 +5,7 @@ > + # http://miniupnp.free.fr/libnatpmp.html > + > + OS = $(shell uname -s) > +-CC = gcc > ++CC ?= gcc > + INSTALL = install > + > + # APIVERSION is used in soname Given simplicity of the patch, perhaps adding CC="${CC}" to MAKE_ARGS would allow to avoid it? ./danfe