svn commit: r536177 - head/devel/tllist

Mark Linimon linimon at FreeBSD.org
Fri May 22 00:07:07 UTC 2020


Author: linimon
Date: Fri May 22 00:07:06 2020
New Revision: 536177
URL: https://svnweb.freebsd.org/changeset/ports/536177

Log:
  Add USE_CSTD=c99 to fix build on GCC-based systems:
  
    ./test.c:44: error: 'for' loop initial declaration used outside C99 mode

Modified:
  head/devel/tllist/Makefile

Modified: head/devel/tllist/Makefile
==============================================================================
--- head/devel/tllist/Makefile	Thu May 21 21:53:11 2020	(r536176)
+++ head/devel/tllist/Makefile	Fri May 22 00:07:06 2020	(r536177)
@@ -12,6 +12,7 @@ COMMENT=	C header file only implementation of a typed 
 LICENSE=	MIT
 
 USES=		meson
+USE_CSTD=	c99
 
 WRKSRC=		${WRKDIR}/${PORTNAME}
 


More information about the svn-ports-head mailing list