svn commit: r503965 - head/lang/plexil

Piotr Kubaj pkubaj at FreeBSD.org
Tue Jun 11 15:55:38 UTC 2019


Author: pkubaj
Date: Tue Jun 11 15:55:37 2019
New Revision: 503965
URL: https://svnweb.freebsd.org/changeset/ports/503965

Log:
  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

Modified:
  head/lang/plexil/Makefile

Modified: head/lang/plexil/Makefile
==============================================================================
--- head/lang/plexil/Makefile	Tue Jun 11 15:54:36 2019	(r503964)
+++ head/lang/plexil/Makefile	Tue Jun 11 15:55:37 2019	(r503965)
@@ -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
 


More information about the svn-ports-all mailing list