Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 12 Jul 2020 15:42:44 +0000 (UTC)
From:      Mark Linimon <linimon@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r542087 - head/games/lolcat
Message-ID:  <202007121542.06CFgiLa044294@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202007121542.06CFgiLa044294>