Date: Thu, 26 Jan 2017 20:16:34 +0000 (UTC) From: Thomas Zander <riggs@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r432538 - head/textproc/pugixml Message-ID: <201701262016.v0QKGY04085407@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201701262016.v0QKGY04085407>