From owner-svn-ports-head@freebsd.org Mon Oct 3 06:53:32 2016 Return-Path: Delivered-To: svn-ports-head@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 B2E33AC6A81; Mon, 3 Oct 2016 06:53:32 +0000 (UTC) (envelope-from jbeich@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 8321AF1E; Mon, 3 Oct 2016 06:53:32 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u936rVxY079637; Mon, 3 Oct 2016 06:53:31 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u936rVGO079636; Mon, 3 Oct 2016 06:53:31 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201610030653.u936rVGO079636@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 3 Oct 2016 06:53:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r423168 - head/textproc/highlight X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 Oct 2016 06:53:32 -0000 Author: jbeich Date: Mon Oct 3 06:53:31 2016 New Revision: 423168 URL: https://svnweb.freebsd.org/changeset/ports/423168 Log: textproc/highlight: unbreak on 9.x ./cli/main.cpp: In member function 'int HLCmdLineApp::run(int, const char**)': ./cli/main.cpp:406: error: 'unique_ptr' was not declared in this scope ./cli/main.cpp:406: error: expected primary-expression before '>' token ./cli/main.cpp:406: error: 'generator' was not declared in this scope Reported by: pkg-fallout Approved by: portmgr blanket Modified: head/textproc/highlight/Makefile (contents, props changed) Modified: head/textproc/highlight/Makefile ============================================================================== --- head/textproc/highlight/Makefile Mon Oct 3 06:53:14 2016 (r423167) +++ head/textproc/highlight/Makefile Mon Oct 3 06:53:31 2016 (r423168) @@ -13,7 +13,8 @@ COMMENT= Customizable syntax highlighter BUILD_DEPENDS= boost-libs>0:devel/boost-libs -USES= dos2unix gmake lua:52 pkgconfig tar:bzip2 +USES= compiler:c++11-lib dos2unix gmake lua:52 pkgconfig tar:bzip2 +USE_CXXSTD= c++11 MAKEFILE= makefile MAKE_ARGS= CXX="${CXX}" \ CFLAGS="${CXXFLAGS} ${CPPFLAGS} -DHAVE_DECL_GETOPT" \