svn commit: r423165 - head/math/openfst

Jan Beich jbeich at FreeBSD.org
Mon Oct 3 06:52:43 UTC 2016


Author: jbeich
Date: Mon Oct  3 06:52:41 2016
New Revision: 423165
URL: https://svnweb.freebsd.org/changeset/ports/423165

Log:
  math/openfst: unbreak on 9.x
  
  symbol-table-ops.cc: In function 'bool fst::AddAuxiliarySymbols(const string&, int64, int64, fst::SymbolTable*)':
  symbol-table-ops.cc:131:43: error: 'to_string' is not a member of 'std'
       if (index != syms->AddSymbol(prefix + std::to_string(i), index)) {
                                             ^
  Reported by:	pkg-fallout
  Approved by:	portmgr blanket

Modified:
  head/math/openfst/Makefile   (contents, props changed)

Modified: head/math/openfst/Makefile
==============================================================================
--- head/math/openfst/Makefile	Mon Oct  3 03:52:35 2016	(r423164)
+++ head/math/openfst/Makefile	Mon Oct  3 06:52:41 2016	(r423165)
@@ -18,6 +18,7 @@ USES=		compiler:c++11-lib libtool python
 USE_LDCONFIG=	${LOCALBASE}/lib/fst
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS+=--enable-bin --enable-compact-fsts --enable-compress --enable-const-fsts --enable-far --enable-linear-fsts --enable-lookahead-fsts --enable-mpdt --enable-ngram-fsts --enable-pdt --enable-python
+CFLAGS+=	-D_GLIBCXX_USE_C99 # XXX ports/193528
 LDFLAGS+=	"-L${LOCALBASE}/lib"
 MAKE_ENV+=	PYTHON=${PYTHON_CMD}
 


More information about the svn-ports-head mailing list