svn commit: r541328 - head/lang/ecl

Piotr Kubaj pkubaj at FreeBSD.org
Mon Jul 6 09:10:16 UTC 2020


Author: pkubaj
Date: Mon Jul  6 09:10:16 2020
New Revision: 541328
URL: https://svnweb.freebsd.org/changeset/ports/541328

Log:
  lang/ecl: fix build on GCC architectures
  
  Use C99 mode:
  /wrkdirs/usr/ports/lang/ecl/work/ecl-20.4.24/src/c/cfun_dispatch.d:1022: error: 'for' loop initial declaration used outside C99 mode

Modified:
  head/lang/ecl/Makefile

Modified: head/lang/ecl/Makefile
==============================================================================
--- head/lang/ecl/Makefile	Mon Jul  6 08:59:34 2020	(r541327)
+++ head/lang/ecl/Makefile	Mon Jul  6 09:10:16 2020	(r541328)
@@ -22,6 +22,7 @@ LIB_DEPENDS=	libgmp.so:math/gmp \
 
 MAKE_JOBS_UNSAFE=	yes
 USES=		autoreconf gmake localbase perl5 tar:tgz makeinfo
+USE_CSTD=	c99
 USE_PERL5=	build
 GNU_CONFIGURE=	yes
 AUTORECONF_WRKSRC=	${WRKSRC}/src


More information about the svn-ports-all mailing list