ports/lang/plexil/Makefile
Piotr Kubaj 3c3ee7a9cd lang/plexil: fix build
Replace USE_GCC=any with USE_GCC=yes.

New GCC is now needed:
../utils/bitsetUtils.hh:72: error: 'const class std::bitset<64u>' has no member named 'all'

Approved by:	mat (mentor)
Differential Revision:	https://reviews.freebsd.org/D20602
2019-06-11 15:55:37 +00:00

27 lines
648 B
Makefile

# $FreeBSD$
PORTNAME= plexil
DISTVERSION= 4.5.0
DISTVERSIONSUFFIX= RC2
CATEGORIES= lang devel
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${DISTVERSION:R}
MAINTAINER= yuri@FreeBSD.org
COMMENT= PLan EXecution Interchange Language from NASA for robot control
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/../LICENSE
USES= gmake libtool
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --disable-static --disable-gantt --disable-ipc --disable-sas --disable-test-exec --disable-udp
USE_GCC= yes # clang fails: undefined symbol: std::__1::unique_ptr
INSTALL_TARGET= install-strip
USE_LDCONFIG= yes
WRKSRC_SUBDIR= src
BINARY_ALIAS= gcc=${CC}
.include <bsd.port.mk>