Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 31 Jan 2017 19:37:19 +0000 (UTC)
From:      Thomas Zander <riggs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r432944 - branches/2017Q1/textproc/pugixml
Message-ID:  <201701311937.v0VJbJbJ038218@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: riggs
Date: Tue Jan 31 19:37:19 2017
New Revision: 432944
URL: https://svnweb.freebsd.org/changeset/ports/432944

Log:
  MFH: r432538
  
  Enable c++11 support: Fix dependent ports which require c++11 or later
  
  PR:		216468
  Submitted by:	riggs
  Approved by:	ports-secteam (feld), ybungalobill@gmail.com (maintainer)

Modified:
  branches/2017Q1/textproc/pugixml/Makefile
Directory Properties:
  branches/2017Q1/   (props changed)

Modified: branches/2017Q1/textproc/pugixml/Makefile
==============================================================================
--- branches/2017Q1/textproc/pugixml/Makefile	Tue Jan 31 19:33:38 2017	(r432943)
+++ branches/2017Q1/textproc/pugixml/Makefile	Tue Jan 31 19:37:19 2017	(r432944)
@@ -2,6 +2,7 @@
 
 PORTNAME=	pugixml
 PORTVERSION=	1.7
+PORTREVISION=	1
 CATEGORIES=	textproc
 MASTER_SITES=	https://github.com/zeux/pugixml/releases/download/v${PORTVERSION}/
 
@@ -10,7 +11,9 @@ COMMENT=	Light-weight, simple and fast X
 
 LICENSE=	MIT
 
-USES=		cmake
+USES=		cmake compiler:c++11-lang
 CMAKE_SOURCE_PATH=	${WRKSRC}/scripts
 
+CXXFLAGS+=	-std=c++11
+
 .include <bsd.port.mk>



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