svn commit: r551624 - head/graphics/py-scikit-image

Piotr Kubaj pkubaj at FreeBSD.org
Wed Oct 7 09:39:27 UTC 2020


Author: pkubaj
Date: Wed Oct  7 09:39:26 2020
New Revision: 551624
URL: https://svnweb.freebsd.org/changeset/ports/551624

Log:
  graphics/py-scikit-image: fix build on GCC architectures
  
  Use C++11 compiler:
  cc1plus: error: unrecognized command line option "-std=c++0x"

Modified:
  head/graphics/py-scikit-image/Makefile

Modified: head/graphics/py-scikit-image/Makefile
==============================================================================
--- head/graphics/py-scikit-image/Makefile	Wed Oct  7 09:30:14 2020	(r551623)
+++ head/graphics/py-scikit-image/Makefile	Wed Oct  7 09:39:26 2020	(r551624)
@@ -24,7 +24,7 @@ RUN_DEPENDS=	${PYNUMPY} \
 		${PYTHON_PKGNAMEPREFIX}PyWavelets>=0.4:math/py-PyWavelets@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}cloudpickle>=0.2.1:devel/py-cloudpickle@${PY_FLAVOR}
 
-USES=		cpe python:3.7+
+USES=		compiler:c++11-lang cpe python:3.7+
 USE_GITHUB=	yes
 USE_PYTHON=	autoplist concurrent distutils cython cython_run
 


More information about the svn-ports-all mailing list