svn commit: r506793 - head/math/moab

Piotr Kubaj pkubaj at FreeBSD.org
Wed Jul 17 07:39:19 UTC 2019


Author: pkubaj
Date: Wed Jul 17 07:39:18 2019
New Revision: 506793
URL: https://svnweb.freebsd.org/changeset/ports/506793

Log:
  math/moab: fix build with GCC
  
  Add USES=compiler:c++11-lang to fix:
  CMake Error at /usr/local/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:137 (message):
    Could NOT find MPI (missing: MPI_CXX_FOUND) (found version "3.0")
  
  Approved by:	mentors (implicit approval)

Modified:
  head/math/moab/Makefile

Modified: head/math/moab/Makefile
==============================================================================
--- head/math/moab/Makefile	Wed Jul 17 06:36:25 2019	(r506792)
+++ head/math/moab/Makefile	Wed Jul 17 07:39:18 2019	(r506793)
@@ -16,7 +16,7 @@ LIB_DEPENDS=	libhdf5.so:science/hdf5 \
 		libnetcdf.so:science/netcdf \
 		libopenblas.so:math/openblas
 
-USES=		cmake:noninja eigen:3 fortran
+USES=		cmake:noninja compiler:c++11-lang eigen:3 fortran
 USE_LDCONFIG=	yes
 
 CMAKE_ARGS=	-DBLAS_LIBRARIES:STRING=${LOCALBASE}/lib/libopenblas.so -DLAPACK_LIBRARIES:STRING=${LOCALBASE}/lib/libopenblas.so


More information about the svn-ports-head mailing list