svn commit: r521583 - head/lang/gauche

Piotr Kubaj pkubaj at FreeBSD.org
Tue Dec 31 02:57:00 UTC 2019


Author: pkubaj
Date: Tue Dec 31 02:56:59 2019
New Revision: 521583
URL: https://svnweb.freebsd.org/changeset/ports/521583

Log:
  lang/gauche: fix build on GCC architectures
  
  C11 compiler is necessary:
  gauche/priv/vmP.h:108: error: redefinition of typedef 'ScmEscapePoint'
  ./gauche/vm.h:233: error: previous declaration of 'ScmEscapePoint' was here

Modified:
  head/lang/gauche/Makefile

Modified: head/lang/gauche/Makefile
==============================================================================
--- head/lang/gauche/Makefile	Tue Dec 31 02:43:02 2019	(r521582)
+++ head/lang/gauche/Makefile	Tue Dec 31 02:56:59 2019	(r521583)
@@ -16,7 +16,7 @@ LICENSE_FILE=	${WRKSRC}/COPYING
 BROKEN_mips=	Fails to build: redefinition of GC_register_dynamic_libraries
 BROKEN_mips64=	Fails to build: redefinition of GC_register_dynamic_libraries
 
-USES=		gmake iconv makeinfo tar:tgz
+USES=		compiler:c11 gmake iconv makeinfo tar:tgz
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--with-local=${LOCALBASE} ${ICONV_CONFIGURE_BASE:S/lib//}
 USE_LDCONFIG=	yes


More information about the svn-ports-all mailing list