From 3c3ee7a9cd1418ec5059fe9e1c7af81e01868f79 Mon Sep 17 00:00:00 2001 From: Piotr Kubaj Date: Tue, 11 Jun 2019 15:55:37 +0000 Subject: [PATCH] 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 --- lang/plexil/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/plexil/Makefile b/lang/plexil/Makefile index c6139c244f0d..88ed6c068c87 100644 --- a/lang/plexil/Makefile +++ b/lang/plexil/Makefile @@ -15,7 +15,7 @@ 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= any # clang fails: undefined symbol: std::__1::unique_ptr +USE_GCC= yes # clang fails: undefined symbol: std::__1::unique_ptr INSTALL_TARGET= install-strip USE_LDCONFIG= yes