From owner-svn-ports-branches@freebsd.org Tue Jan 31 19:37:21 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 20334CCA009; Tue, 31 Jan 2017 19:37:21 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DCCCE1FC0; Tue, 31 Jan 2017 19:37:20 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0VJbKUZ038219; Tue, 31 Jan 2017 19:37:20 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0VJbJbJ038218; Tue, 31 Jan 2017 19:37:19 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201701311937.v0VJbJbJ038218@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Tue, 31 Jan 2017 19:37:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432944 - branches/2017Q1/textproc/pugixml X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Jan 2017 19:37:21 -0000 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