svn commit: r542776 - head/archivers/tar-stream-chunker

Mark Linimon linimon at FreeBSD.org
Tue Jul 21 18:40:47 UTC 2020


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
 


More information about the svn-ports-all mailing list