svn commit: r500199 - head/science/massxpert

Piotr Kubaj pkubaj at FreeBSD.org
Sat Apr 27 08:46:33 UTC 2019


Author: pkubaj
Date: Sat Apr 27 08:46:32 2019
New Revision: 500199
URL: https://svnweb.freebsd.org/changeset/ports/500199

Log:
  science/massxpert: fix build with GCC-based architectures
  
  Replace USE_GCC=any with USE_GCC=yes to fix build on GCC architectures.
  
  Build failure log:
  CMake Error in lib/CMakeLists.txt:
  
    The compiler feature "cxx_decltype" is not known to CXX compiler
  
    "GNU"
  
     version 4.2.1.
  
  Approved by:	tcberner (mentor)
  Differential Revision:	https://reviews.freebsd.org/D20067

Modified:
  head/science/massxpert/Makefile

Modified: head/science/massxpert/Makefile
==============================================================================
--- head/science/massxpert/Makefile	Sat Apr 27 08:44:39 2019	(r500198)
+++ head/science/massxpert/Makefile	Sat Apr 27 08:46:32 2019	(r500199)
@@ -23,7 +23,7 @@ USE_GITLAB=	yes
 GL_SITE=	https://salsa.debian.org/
 GL_ACCOUNT=	debichem-team
 GL_COMMIT=	c229f4a1abde3c20b83a90e50f9c5d79104dfa5f
-USE_GCC=	any # build breaks in clang
+USE_GCC=	yes # build breaks in clang
 USE_XORG=	ice sm x11 xau xcb xdmcp xext xrender
 USE_GNOME=	glib20
 USE_QT=		core gui svg xml widgets buildtools_build qmake_build


More information about the svn-ports-head mailing list