svn commit: r423168 - head/textproc/highlight

Jan Beich jbeich at FreeBSD.org
Mon Oct 3 06:53:32 UTC 2016


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" \


More information about the svn-ports-all mailing list