svn commit: r507373 - head/devel/nsync

Piotr Kubaj pkubaj at FreeBSD.org
Fri Jul 26 21:01:11 UTC 2019


Author: pkubaj
Date: Fri Jul 26 21:01:10 2019
New Revision: 507373
URL: https://svnweb.freebsd.org/changeset/ports/507373

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

Modified:
  head/devel/nsync/Makefile

Modified: head/devel/nsync/Makefile
==============================================================================
--- head/devel/nsync/Makefile	Fri Jul 26 20:46:53 2019	(r507372)
+++ head/devel/nsync/Makefile	Fri Jul 26 21:01:10 2019	(r507373)
@@ -10,7 +10,7 @@ COMMENT=	C library that exports various synchronizatio
 LICENSE=	BSD3CLAUSE
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-USES=		cmake
+USES=		cmake compiler:c++11-lang
 USE_GITHUB=	yes
 GH_ACCOUNT=	google
 USE_LDCONFIG=	yes


More information about the svn-ports-all mailing list