Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 3 Oct 2016 06:52:42 +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: r423165 - head/math/openfst
Message-ID:  <201610030652.u936qgRX079324@repo.freebsd.org>

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



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