svn commit: r542087 - head/games/lolcat

Mark Linimon linimon at FreeBSD.org
Sun Jul 12 15:42:44 UTC 2020


Author: linimon
Date: Sun Jul 12 15:42:44 2020
New Revision: 542087
URL: https://svnweb.freebsd.org/changeset/ports/542087

Log:
  Add USE_CSTD=c99 to fix build on GCC-based systems:
  
    censor.c:41: error: 'for' loop initial declaration used outside C99 mode
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/games/lolcat/Makefile

Modified: head/games/lolcat/Makefile
==============================================================================
--- head/games/lolcat/Makefile	Sun Jul 12 15:13:47 2020	(r542086)
+++ head/games/lolcat/Makefile	Sun Jul 12 15:42:44 2020	(r542087)
@@ -12,7 +12,8 @@ COMMENT=	High performance implementation of the famous
 LICENSE=		WTFPL
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-USES=	gmake
+USES=		gmake
+USE_CSTD=	c99
 
 CONFLICTS_INSTALL=	rubygem-lolcat
 


More information about the svn-ports-all mailing list