svn commit: r519659 - head/lang/v

Mark Linimon linimon at FreeBSD.org
Tue Dec 10 10:55:02 UTC 2019


Author: linimon
Date: Tue Dec 10 10:55:02 2019
New Revision: 519659
URL: https://svnweb.freebsd.org/changeset/ports/519659

Log:
  Fix build on GCC-based systems:
  
    /wrkdirs/usr/ports/lang/v/work/v-0.1.22/vc/v.c:1681: error: 'for' loop initial declaration used outside C99 mode
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/lang/v/Makefile

Modified: head/lang/v/Makefile
==============================================================================
--- head/lang/v/Makefile	Tue Dec 10 10:50:04 2019	(r519658)
+++ head/lang/v/Makefile	Tue Dec 10 10:55:02 2019	(r519659)
@@ -11,7 +11,7 @@ COMMENT=	V Programming Language
 LICENSE=	MIT
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-USES=		gmake
+USES=		compiler:c11 gmake
 
 LDFLAGS+=	-lm
 


More information about the svn-ports-head mailing list