svn commit: r456086 - head/textproc/ansifilter

Jan Beich jbeich at FreeBSD.org
Tue Dec 12 02:57:14 UTC 2017


Author: jbeich
Date: Tue Dec 12 02:57:13 2017
New Revision: 456086
URL: https://svnweb.freebsd.org/changeset/ports/456086

Log:
  textproc/ansifilter: require C++11 toolchain (on powerpc*, mips*, sparc*)
  
  cc1plus: error: unrecognized command line option "-std=c++11"
  
  main.cpp:118:5: error: use of undeclared identifier 'unique_ptr'
      unique_ptr<ansifilter::CodeGenerator> generator(ansifilter::CodeGenerator::getInstance(op...
      ^
  
  Reported by:	pkg-fallout (mips64)

Modified:
  head/textproc/ansifilter/Makefile   (contents, props changed)

Modified: head/textproc/ansifilter/Makefile
==============================================================================
--- head/textproc/ansifilter/Makefile	Tue Dec 12 02:55:33 2017	(r456085)
+++ head/textproc/ansifilter/Makefile	Tue Dec 12 02:57:13 2017	(r456086)
@@ -12,9 +12,7 @@ COMMENT=	Customizable ANSI Code Converter
 LICENSE=	GPLv3+
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-BROKEN_powerpc64=	fails to compile: cc1plus: error: unrecognized command line option -std=c++11
-
-USES=		gmake tar:bzip2
+USES=		compiler:c++11-lib gmake tar:bzip2
 MAKEFILE=	makefile
 
 PORTDOCS=	ChangeLog README


More information about the svn-ports-head mailing list