Date: Sat, 21 Sep 2019 16:36:22 +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: r512524 - head/audio/protracker Message-ID: <201909211636.x8LGaMED095583@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pkubaj Date: Sat Sep 21 16:36:21 2019 New Revision: 512524 URL: https://svnweb.freebsd.org/changeset/ports/512524 Log: audio/protracker: fix build on GCC architectures Add USE_CSTD=c99 to fix build: /wrkdirs/usr/ports/audio/protracker/work/protracker-2.3d.r191/src/pt_visuals.c:1272: error: 'for' loop initial declaration used outside C99 mode PR: 240703 Approved by: portmgr (blanket: build fix), linimon (mentor) Modified: head/audio/protracker/Makefile Modified: head/audio/protracker/Makefile ============================================================================== --- head/audio/protracker/Makefile Sat Sep 21 16:34:48 2019 (r512523) +++ head/audio/protracker/Makefile Sat Sep 21 16:36:21 2019 (r512524) @@ -14,6 +14,7 @@ LICENSE= WTFPL LICENSE_FILE= ${WRKSRC}/src/COPYING.txt USES= localbase:ldflags sdl +USE_CSTD= c99 USE_SDL= sdl2 SVN_URL= https://svn.code.sf.net/p/protracker/code/trunk
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201909211636.x8LGaMED095583>