svn commit: r432801 - head/devel/ice/files

Jan Beich jbeich at freebsd.org
Mon Jan 30 03:10:21 UTC 2017


Michael Gmelin <grembo at FreeBSD.org> 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 ?


More information about the svn-ports-head mailing list