From owner-svn-ports-head@freebsd.org Mon Feb 29 05:12:09 2016 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 06669AB8C6D; Mon, 29 Feb 2016 05:12:09 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id F1A7C242; Mon, 29 Feb 2016 05:12:08 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1033) id EFB5B1369; Mon, 29 Feb 2016 05:12:08 +0000 (UTC) Date: Mon, 29 Feb 2016 05:12:08 +0000 From: Alexey Dokuchaev To: Raphael Kubo da Costa Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r409744 - in head/graphics: . farbfeld farbfeld/files Message-ID: <20160229051208.GC45790@FreeBSD.org> References: <201602281453.u1SEr55F056455@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201602281453.u1SEr55F056455@repo.freebsd.org> User-Agent: Mutt/1.5.24 (2015-08-30) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 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, 29 Feb 2016 05:12:09 -0000 On Sun, Feb 28, 2016 at 02:53:05PM +0000, Raphael Kubo da Costa wrote: > New Revision: 409744 > URL: https://svnweb.freebsd.org/changeset/ports/409744 > > Log: > New port: graphics/farbfeld. > > [...] > @@ -0,0 +1,13 @@ > +--- config.mk.orig 2016-02-19 12:59:50.769556000 -0600 > ++++ config.mk 2016-02-19 12:56:15.846580000 -0600 > +@@ -18,8 +18,8 @@ > + > + # flags > + CPPFLAGS = -D_DEFAULT_SOURCE > +-CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS} > ++CFLAGS += -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS} Looks like `-Os' should be dropped as += would uphold our standard CFLAGS which typically already carry desired optimization option(s). ./danfe