Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 23 Feb 2020 10:52:44 +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: r526916 - head/biology/stringtie
Message-ID:  <202002231052.01NAqiGO050447@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Sun Feb 23 10:52:44 2020
New Revision: 526916
URL: https://svnweb.freebsd.org/changeset/ports/526916

Log:
  biology/stringtie: fix build on GCC architectures
  
  Use C++11 compiler:
  cc1plus: error: unrecognized command line option "-std=c++0x"

Modified:
  head/biology/stringtie/Makefile

Modified: head/biology/stringtie/Makefile
==============================================================================
--- head/biology/stringtie/Makefile	Sun Feb 23 10:51:48 2020	(r526915)
+++ head/biology/stringtie/Makefile	Sun Feb 23 10:52:44 2020	(r526916)
@@ -14,7 +14,7 @@ LICENSE_FILE=	${WRKSRC}/LICENSE
 TEST_DEPENDS=	bash:shells/bash \
 		curl:ftp/curl
 
-USES=		gmake
+USES=		compiler:c++11-lang gmake
 ALL_TARGET=	release
 TEST_TARGET=	test
 



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