Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 23 Oct 2014 14:05:56 +0000 (UTC)
From:      Dmitry Sivachenko <demon@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r371396 - head/math/openfst
Message-ID:  <201410231405.s9NE5upC060132@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: demon
Date: Thu Oct 23 14:05:56 2014
New Revision: 371396
URL: https://svnweb.freebsd.org/changeset/ports/371396
QAT: https://qat.redports.org/buildarchive/r371396/

Log:
  Use std::isspace instead of isspace to fix the following compile error in
  py-fst:
  In file included from fst/_fst.cpp:322:
  In file included from /usr/local/include/fst/fstlib.h:49:
  In file included from /usr/local/include/fst/fst.h:34:
  In file included from /usr/local/include/fst/arc.h:31:
  In file included from /usr/local/include/fst/power-weight.h:24:
  /usr/local/include/fst/tuple-weight.h:179:14: error: call to 'isspace' is ambiguous
      } while (isspace(c));
               ^~~~~~~
  /usr/include/ctype.h:57:5: note: candidate function
  int     isspace(int);
          ^
  /usr/include/c++/v1/cctype:125:38: note: candidate function
  inline _LIBCPP_INLINE_VISIBILITY int isspace(int __c) {return __libcpp_isspace(__c);}
  /usr/include/ctype.h:57:5: note: candidate function
  int     isspace(int);
          ^
  /usr/include/c++/v1/cctype:125:38: note: candidate function
  inline _LIBCPP_INLINE_VISIBILITY int isspace(int __c) {return __libcpp_isspace(__c);}

Modified:
  head/math/openfst/Makefile

Modified: head/math/openfst/Makefile
==============================================================================
--- head/math/openfst/Makefile	Thu Oct 23 14:03:56 2014	(r371395)
+++ head/math/openfst/Makefile	Thu Oct 23 14:05:56 2014	(r371396)
@@ -3,7 +3,7 @@
 
 PORTNAME=	openfst
 PORTVERSION=	1.4.1
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	math
 MASTER_SITES=	http://www.openfst.org/twiki/pub/FST/FstDownload/
 
@@ -19,5 +19,6 @@ CONFIGURE_ARGS+=--enable-compact-fsts --
 
 post-patch:
 	${REINPLACE_CMD} -e s#-ldl## ${WRKSRC}/src/extensions/far/Makefile.in ${WRKSRC}/src/extensions/pdt/Makefile.in ${WRKSRC}/src/bin/Makefile.in ${WRKSRC}/src/test/Makefile.in ${WRKSRC}/src/extensions/linear/Makefile.in
+	${REINPLACE_CMD} -e s#isspace#std::isspace# ${WRKSRC}/src/include/fst/tuple-weight.h ${WRKSRC}/src/include/fst/sparse-tuple-weight.h ${WRKSRC}/src/include/fst/pair-weight.h
 
 .include <bsd.port.mk>



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