svn commit: r543900 - branches/2020Q3/math/wxmaxima

Piotr Kubaj pkubaj at FreeBSD.org
Sat Aug 1 09:23:32 UTC 2020


Author: pkubaj
Date: Sat Aug  1 09:23:31 2020
New Revision: 543900
URL: https://svnweb.freebsd.org/changeset/ports/543900

Log:
  MFH: r543899
  
  math/wxmaxima: fix build on GCC architectires
  
  Use C++11 compiler:
  CMake Error in src/CMakeLists.txt:
    Target "wxmaxima" requires the language dialect "CXX11" (with compiler
    extensions), but CMake does not know the compile flags to use to enable it.
  
  Approved by:	portmgr (fix build blanket)

Modified:
  branches/2020Q3/math/wxmaxima/Makefile
Directory Properties:
  branches/2020Q3/   (props changed)

Modified: branches/2020Q3/math/wxmaxima/Makefile
==============================================================================
--- branches/2020Q3/math/wxmaxima/Makefile	Sat Aug  1 09:21:48 2020	(r543899)
+++ branches/2020Q3/math/wxmaxima/Makefile	Sat Aug  1 09:23:31 2020	(r543900)
@@ -15,7 +15,7 @@ LICENSE_FILE=	${WRKSRC}/COPYING
 
 RUN_DEPENDS=	maxima:math/maxima
 
-USES=		cmake desktop-file-utils shared-mime-info
+USES=		cmake compiler:c++11-lang desktop-file-utils shared-mime-info
 USE_WX=		3.0
 USE_GITHUB=	yes
 GH_ACCOUNT=	wxMaxima-Developers


More information about the svn-ports-all mailing list