svn commit: r511754 - head/devel/boost-jam

Piotr Kubaj pkubaj at FreeBSD.org
Tue Sep 10 11:40:26 UTC 2019


Author: pkubaj
Date: Tue Sep 10 11:40:25 2019
New Revision: 511754
URL: https://svnweb.freebsd.org/changeset/ports/511754

Log:
  devel/boost-jam: fix build on GCC architectures
  
  Use new GCC on GCC architectures:
  The error:
  cc1plus: error: unrecognized command line option "-std=c++11"
  
  PR:		240065
  Approved by:	linimon (mentor), office (maintainer timeout)

Modified:
  head/devel/boost-jam/Makefile

Modified: head/devel/boost-jam/Makefile
==============================================================================
--- head/devel/boost-jam/Makefile	Tue Sep 10 11:09:22 2019	(r511753)
+++ head/devel/boost-jam/Makefile	Tue Sep 10 11:40:25 2019	(r511754)
@@ -13,6 +13,8 @@ MAKE_FLAGS=	#
 _MAKE_JOBS=	#
 MAKEFILE=	#
 
+USES=		compiler:c++11-lang
+
 WRKSRC_SUBDIR=	tools/build/src/engine
 
 .include "${.CURDIR}/../boost-all/common.mk"


More information about the svn-ports-all mailing list