svn commit: r512507 - head/audio/fasttracker2

Piotr Kubaj pkubaj at FreeBSD.org
Sat Sep 21 15:15:39 UTC 2019


Author: pkubaj
Date: Sat Sep 21 15:15:38 2019
New Revision: 512507
URL: https://svnweb.freebsd.org/changeset/ports/512507

Log:
  audio/fasttracker2: fix build with base GCC
  
  Add USE_CSTD=c99 to fix build with base GCC:
  /wrkdirs/usr/ports/audio/fasttracker2/work/ft2-clone-code/src/ft2_gui.c:431: error: 'for' loop initial declaration used outside C99 mode
  
  PR:		240659
  Approved by:	ehaupt (maintainer), linimon (mentor)
  Differential Revision:	https://reviews.freebsd.org/D21702

Modified:
  head/audio/fasttracker2/Makefile

Modified: head/audio/fasttracker2/Makefile
==============================================================================
--- head/audio/fasttracker2/Makefile	Sat Sep 21 15:14:11 2019	(r512506)
+++ head/audio/fasttracker2/Makefile	Sat Sep 21 15:15:38 2019	(r512507)
@@ -18,6 +18,7 @@ LICENSE_FILE_BSD3CLAUSE=	${WRKSRC}/src/LICENSE.txt
 LICENSE_FILE_CC-BY-NC-SA-4.0=	${WRKSRC}/src/gfxdata/bmp/LICENSE.txt
 
 USES=		dos2unix iconv:wchar_t localbase:ldflags sdl zip
+USE_CSTD=	c99
 USE_SDL=	sdl2
 
 WRKSRC=		${WRKDIR}/ft2-clone-code


More information about the svn-ports-all mailing list