From owner-svn-ports-head@freebsd.org Mon Jan 30 03:10:21 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 A26A5CC7E17; Mon, 30 Jan 2017 03:10:21 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 86AFBDE2; Mon, 30 Jan 2017 03:10:21 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id D93951DDC; Mon, 30 Jan 2017 03:10:20 +0000 (UTC) To: grembo@FreeBSD.org, ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r432801 - head/devel/ice/files In-Reply-To: <201701292139.v0TLdUOj092094@repo.freebsd.org> Message-Id: <20170130031020.D93951DDC@freefall.freebsd.org> Date: Mon, 30 Jan 2017 03:10:20 +0000 (UTC) From: jbeich@freebsd.org (Jan Beich) 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, 30 Jan 2017 03:10:21 -0000 Michael Gmelin writes: > Author: grembo > Date: Sun Jan 29 21:39:30 2017 > New Revision: 432801 > URL: https://svnweb.freebsd.org/changeset/ports/432801 > > Log: > Allow building devel/py-ice with clang 4.0, based on bug report > > Tested that this still builds fine using previous versions of clang, > didn't bump revision, as there is no functional change and it's > a build time error. [...] > +- if(PyTuple_SET_ITEM(results.get(), info->pos, Unset) < 0) > ++ if(PyTuple_SetItem(results.get(), info->pos, Unset) < 0) PORTREVISION bump here is required to pick up a regular bugfix. A pointer address cannot be less than zero unless you cast to a smaller signed type then overflow. Can you also MFH it to /branches/2017Q1 ?