Date: Tue, 31 Dec 2019 02:56:59 +0000 (UTC) From: Piotr Kubaj <pkubaj@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r521583 - head/lang/gauche Message-ID: <201912310256.xBV2uxNV074567@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201912310256.xBV2uxNV074567>