Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 21 Sep 2019 15:15:38 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r512507 - head/audio/fasttracker2
Message-ID:  <201909211515.x8LFFcnK046780@repo.freebsd.org>

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



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