diff options
author | pkubaj <pkubaj@FreeBSD.org> | 2019-06-11 23:55:37 +0800 |
---|---|---|
committer | pkubaj <pkubaj@FreeBSD.org> | 2019-06-11 23:55:37 +0800 |
commit | bcc0c08aafb658267406f13ba1742d03adf56413 (patch) | |
tree | 2223c8635dfdfe51269fcc9585a2d13c62fc1793 /lang/plexil | |
parent | 3590244ad2be4077db8ca2f05936074aecb67fd8 (diff) | |
download | freebsd-ports-gnome-bcc0c08aafb658267406f13ba1742d03adf56413.tar.gz freebsd-ports-gnome-bcc0c08aafb658267406f13ba1742d03adf56413.tar.zst freebsd-ports-gnome-bcc0c08aafb658267406f13ba1742d03adf56413.zip |
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
Diffstat (limited to 'lang/plexil')
-rw-r--r-- | lang/plexil/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
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 |