Date: Mon, 23 Jan 2017 20:40:08 +0000 (UTC) From: "Tobias C. Berner" <tcberner@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432289 - in branches/2017Q1/graphics/py-poppler-qt4: . files Message-ID: <201701232040.v0NKe89A010783@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tcberner Date: Mon Jan 23 20:40:08 2017 New Revision: 432289 URL: https://svnweb.freebsd.org/changeset/ports/432289 Log: MFH: r432089 Fix graphics/py-poppler-qt4: fails to build with clang 4.0 PyList_SET_ITEM() is supposed to be void, but as a macro it's an expression and has a pointer value. Clang 4.0 trips on the bogus pointer comparison; given the comparison, it should be PyList_SetItem() which returns -1 on failure. PR: 216228 Approved by: portmgr blanket, rakuco (mentor) Approved by: ports-secteam (junovitch), rakuco (mentor) Added: branches/2017Q1/graphics/py-poppler-qt4/files/ - copied from r432089, head/graphics/py-poppler-qt4/files/ Modified: branches/2017Q1/graphics/py-poppler-qt4/Makefile Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/graphics/py-poppler-qt4/Makefile ============================================================================== --- branches/2017Q1/graphics/py-poppler-qt4/Makefile Mon Jan 23 20:27:07 2017 (r432288) +++ branches/2017Q1/graphics/py-poppler-qt4/Makefile Mon Jan 23 20:40:08 2017 (r432289) @@ -2,7 +2,7 @@ PORTNAME= poppler-qt4 PORTVERSION= 0.18.1 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= graphics python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201701232040.v0NKe89A010783>