svn commit: r557786 - head/devel/py-cffi

Mark Linimon linimon at FreeBSD.org
Sat Dec 12 04:04:11 UTC 2020


Author: linimon
Date: Sat Dec 12 04:04:11 2020
New Revision: 557786
URL: https://svnweb.freebsd.org/changeset/ports/557786

Log:
  Change USES to compiler:c11 to fix latest build error on GCC-based
  systems:
  
    c/_cffi_backend.c:6344: error: #pragma GCC diagnostic not allowed inside functions
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/devel/py-cffi/Makefile

Modified: head/devel/py-cffi/Makefile
==============================================================================
--- head/devel/py-cffi/Makefile	Sat Dec 12 02:33:20 2020	(r557785)
+++ head/devel/py-cffi/Makefile	Sat Dec 12 04:04:11 2020	(r557786)
@@ -17,7 +17,7 @@ LIB_DEPENDS=	libffi.so:devel/libffi
 RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pycparser>=0:devel/py-pycparser@${PY_FLAVOR}
 TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR}
 
-USES=		compiler localbase python
+USES=		compiler:c11 localbase python
 USE_PYTHON=	autoplist concurrent distutils
 
 .include <bsd.port.pre.mk>


More information about the svn-ports-all mailing list