svn commit: r566826 - head/audio/ft2play

Mark Linimon linimon at FreeBSD.org
Mon Mar 1 02:36:23 UTC 2021


Author: linimon
Date: Mon Mar  1 02:36:22 2021
New Revision: 566826
URL: https://svnweb.freebsd.org/changeset/ports/566826

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

Modified:
  head/audio/ft2play/Makefile

Modified: head/audio/ft2play/Makefile
==============================================================================
--- head/audio/ft2play/Makefile	Mon Mar  1 01:54:25 2021	(r566825)
+++ head/audio/ft2play/Makefile	Mon Mar  1 02:36:22 2021	(r566826)
@@ -12,6 +12,7 @@ LICENSE=	BSD3CLAUSE
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
 USES=		sdl
+USE_CSTD=	c99
 USE_GITHUB=	yes
 GH_ACCOUNT=	8bitbubsy
 GH_TAGNAME=	5730b16


More information about the svn-ports-all mailing list