svn commit: r500205 - head/science/ALPSCore

Piotr Kubaj pkubaj at FreeBSD.org
Sat Apr 27 09:30:31 UTC 2019


Author: pkubaj
Date: Sat Apr 27 09:30:30 2019
New Revision: 500205
URL: https://svnweb.freebsd.org/changeset/ports/500205

Log:
  science/ALPSCore: fix build with GCC-based architectures
  
  CMake Error at common/cmake/ALPSCommonModuleDefinitions.cmake:194 (target_compile_features):
    target_compile_features The compiler feature "cxx_std_11" is not known to
    CXX compiler
  
    "GNU"
  
    version 4.2.1.
  
  Approved by:	tcberner (mentor)
  Differential Revision:	https://reviews.freebsd.org/D20049

Modified:
  head/science/ALPSCore/Makefile

Modified: head/science/ALPSCore/Makefile
==============================================================================
--- head/science/ALPSCore/Makefile	Sat Apr 27 09:04:29 2019	(r500204)
+++ head/science/ALPSCore/Makefile	Sat Apr 27 09:30:30 2019	(r500205)
@@ -18,7 +18,7 @@ LIB_DEPENDS=	libboost_system.so:devel/boost-libs \
 		libhdf5.so:science/hdf5 \
 		libsz.so:science/szip
 
-USES=		cmake eigen:3
+USES=		cmake compiler:c++11-lang eigen:3
 USE_GITHUB=	yes
 USE_LDCONFIG=	yes
 TEST_TARGET=	test # 2 to 3 tests fail: https://github.com/ALPSCore/ALPSCore/issues/388


More information about the svn-ports-all mailing list