1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-03 06:04:53 +00:00
freebsd-ports/math/openfst/Makefile
Dmitry Sivachenko 97ca34aaa4 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);}
2014-10-23 14:05:56 +00:00

25 lines
993 B
Makefile

# Created by: Dmitry Sivachenko <mitya@yandex-team.ru>
# $FreeBSD$
PORTNAME= openfst
PORTVERSION= 1.4.1
PORTREVISION= 4
CATEGORIES= math
MASTER_SITES= http://www.openfst.org/twiki/pub/FST/FstDownload/
MAINTAINER= demon@FreeBSD.org
COMMENT= Library for working with weighted finite-state transducers (FSTs)
LICENSE= APACHE20
USES= compiler:c++11-lib libtool
USE_LDCONFIG= ${LOCALBASE}/lib/fst
GNU_CONFIGURE= yes
CONFIGURE_ARGS+=--enable-compact-fsts --enable-const-fsts --enable-far --enable-linear-fsts --enable-ngram-fsts --enable-lookahead-fsts --enable-pdt
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>