Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 23 Oct 2019 09:31:48 +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: r515241 - head/math/rkward-kde
Message-ID:  <201910230931.x9N9Vmlc075485@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Wed Oct 23 09:31:48 2019
New Revision: 515241
URL: https://svnweb.freebsd.org/changeset/ports/515241

Log:
  math/rkward-kde: fix build on GCC architectures
  
  Needs C++11 compiler:
    The compiler feature "cxx_decltype" is not known to CXX compiler
  
    "GNU"
  
    version 4.2.1.
  
  Approved by:	mentors (implicit approval)

Modified:
  head/math/rkward-kde/Makefile

Modified: head/math/rkward-kde/Makefile
==============================================================================
--- head/math/rkward-kde/Makefile	Wed Oct 23 08:28:08 2019	(r515240)
+++ head/math/rkward-kde/Makefile	Wed Oct 23 09:31:48 2019	(r515241)
@@ -15,7 +15,8 @@ LICENSE=	GPLv2
 
 LIB_DEPENDS=	libR.so:math/R
 
-USES=		cmake desktop-file-utils gettext fortran kde:5 php:cli qt:5 shared-mime-info
+USES=		cmake compiler:c++11-lang desktop-file-utils gettext fortran \
+		kde:5 php:cli qt:5 shared-mime-info
 USE_QT=		buildtools concurrent core dbus gui network printsupport qmake script webkit	\
 		widgets xml
 USE_XORG=	x11



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