svn commit: r432538 - head/textproc/pugixml

Thomas Zander riggs at FreeBSD.org
Thu Jan 26 20:16:35 UTC 2017


Author: riggs
Date: Thu Jan 26 20:16:33 2017
New Revision: 432538
URL: https://svnweb.freebsd.org/changeset/ports/432538

Log:
  Enable c++11 support: Fix dependent ports which require c++11 or later
  
  PR:		216468
  Submitted by:	riggs
  Approved by:	ybungalobill at gmail.com (maintainer)
  MFH:		2017Q1

Modified:
  head/textproc/pugixml/Makefile

Modified: head/textproc/pugixml/Makefile
==============================================================================
--- head/textproc/pugixml/Makefile	Thu Jan 26 20:01:07 2017	(r432537)
+++ head/textproc/pugixml/Makefile	Thu Jan 26 20:16:33 2017	(r432538)
@@ -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>


More information about the svn-ports-all mailing list