Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 3 Oct 2016 06:53:31 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r423168 - head/textproc/highlight
Message-ID:  <201610030653.u936rVGO079636@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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" \



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