svn commit: r526916 - head/biology/stringtie

Piotr Kubaj pkubaj at FreeBSD.org
Sun Feb 23 10:52:44 UTC 2020


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
 


More information about the svn-ports-all mailing list