svn commit: r515206 - head/graphics/ebsynth

Piotr Kubaj pkubaj at FreeBSD.org
Tue Oct 22 18:01:59 UTC 2019


Author: pkubaj
Date: Tue Oct 22 18:01:58 2019
New Revision: 515206
URL: https://svnweb.freebsd.org/changeset/ports/515206

Log:
  graphics/ebsynth: fix build on GCC architectures
  
  Use C++11 compiler:
  cc1plus: error: unrecognized command line option "-std=c++11"
  
  Approved by:	mentors (implicit approval)

Modified:
  head/graphics/ebsynth/Makefile

Modified: head/graphics/ebsynth/Makefile
==============================================================================
--- head/graphics/ebsynth/Makefile	Tue Oct 22 17:05:42 2019	(r515205)
+++ head/graphics/ebsynth/Makefile	Tue Oct 22 18:01:58 2019	(r515206)
@@ -11,7 +11,7 @@ LICENSE=	PD
 
 LIB_DEPENDS=	libomp.so:devel/openmp
 
-USES=		localbase
+USES=		compiler:c++11-lang localbase
 USE_GITHUB=	yes
 GH_ACCOUNT=	jamriska
 GH_TAGNAME=	2f5c97c0c21a


More information about the svn-ports-head mailing list