Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 1 Aug 2020 09:21:49 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r543899 - head/math/wxmaxima
Message-ID:  <202008010921.0719LnLa050544@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Sat Aug  1 09:21:48 2020
New Revision: 543899
URL: https://svnweb.freebsd.org/changeset/ports/543899

Log:
  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.
  
  MFH:		2020Q3 (fix build blanket)2020Q3 (fix build blanket)

Modified:
  head/math/wxmaxima/Makefile

Modified: head/math/wxmaxima/Makefile
==============================================================================
--- head/math/wxmaxima/Makefile	Sat Aug  1 09:13:41 2020	(r543898)
+++ head/math/wxmaxima/Makefile	Sat Aug  1 09:21:48 2020	(r543899)
@@ -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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202008010921.0719LnLa050544>