svn commit: r529124 - head/science/elmerfem

Piotr Kubaj pkubaj at FreeBSD.org
Wed Mar 25 20:36:18 UTC 2020


Author: pkubaj
Date: Wed Mar 25 20:36:06 2020
New Revision: 529124
URL: https://svnweb.freebsd.org/changeset/ports/529124

Log:
  science/elmerfem: fix build on GCC architectures
  
  C++11 compiler is required:
    The compiler feature "cxx_decltype" is not known to CXX compiler
  
    "GNU"
  
    version 4.2.1.

Modified:
  head/science/elmerfem/Makefile

Modified: head/science/elmerfem/Makefile
==============================================================================
--- head/science/elmerfem/Makefile	Wed Mar 25 20:07:46 2020	(r529123)
+++ head/science/elmerfem/Makefile	Wed Mar 25 20:36:06 2020	(r529124)
@@ -16,7 +16,7 @@ LIB_DEPENDS=	libmetis.so:math/metis \
 		libopenblas.so:math/openblas \
 		libparpack.so:math/arpack-ng
 
-USES=		cmake fortran tcl
+USES=		cmake compiler:c++11-lang fortran tcl
 USE_GITHUB=	yes
 GH_ACCOUNT=	ElmerCSC
 GH_TAGNAME=	39f692c


More information about the svn-ports-all mailing list