Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 28 Nov 2019 10:37:18 +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: r518573 - head/security/libtasn1
Message-ID:  <201911281037.xASAbIeU014678@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Thu Nov 28 10:37:18 2019
New Revision: 518573
URL: https://svnweb.freebsd.org/changeset/ports/518573

Log:
  security/libtasn1: fix build on GCC architectures
  
  After last update the port uses C99:
  corpus2array.c:123: error: 'for' loop initial declaration used outside C99 mode
  
  PR:		242278
  Approved by:	novel (maintainer), linimon (mentor)

Modified:
  head/security/libtasn1/Makefile

Modified: head/security/libtasn1/Makefile
==============================================================================
--- head/security/libtasn1/Makefile	Thu Nov 28 10:17:37 2019	(r518572)
+++ head/security/libtasn1/Makefile	Thu Nov 28 10:37:18 2019	(r518573)
@@ -15,6 +15,7 @@ LICENSE_COMB=	multi
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
 USES=		cpe pkgconfig pathfix gmake libtool
+USE_CSTD=	c99
 USE_LDCONFIG=	yes
 GNU_CONFIGURE=	yes
 INSTALL_TARGET=	install-strip



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