Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 21 Jul 2020 18:40:46 +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: r542776 - head/archivers/tar-stream-chunker
Message-ID:  <202007211840.06LIek1C072681@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: linimon
Date: Tue Jul 21 18:40:46 2020
New Revision: 542776
URL: https://svnweb.freebsd.org/changeset/ports/542776

Log:
  Add USES=compiler:c++11-lang to fix build on GCC-based systems:
  
    src/main.c:73: error: 'for' loop initial declaration used outside C99 mode
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/archivers/tar-stream-chunker/Makefile

Modified: head/archivers/tar-stream-chunker/Makefile
==============================================================================
--- head/archivers/tar-stream-chunker/Makefile	Tue Jul 21 18:28:04 2020	(r542775)
+++ head/archivers/tar-stream-chunker/Makefile	Tue Jul 21 18:40:46 2020	(r542776)
@@ -10,6 +10,7 @@ COMMENT=	Splits stdin of unknown size onto chunks pack
 LICENSE=	BSD2CLAUSE
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
+USES=		compiler:c++11-lang
 USE_GITHUB=	yes
 GH_ACCOUNT=	ihoro
 



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