svn commit: r500601 - head/textproc/p5-Text-BibTeX

Piotr Kubaj pkubaj at FreeBSD.org
Wed May 1 17:58:36 UTC 2019


Author: pkubaj
Date: Wed May  1 17:58:35 2019
New Revision: 500601
URL: https://svnweb.freebsd.org/changeset/ports/500601

Log:
  textproc/p5-Text-BibTeX: fix build with GCC-based architectures
  
  btparse/tests/namebug.c:193: error: 'for' loop initial declaration used outside C99 mode on GCC architectures.
  
  Set USE_CSTD=c99 to fix build.
  
  PR:		237254
  Approved by:	perl (maintainer timeout), mat (mentor)
  Differential Revision:	https://reviews.freebsd.org/D20114

Modified:
  head/textproc/p5-Text-BibTeX/Makefile

Modified: head/textproc/p5-Text-BibTeX/Makefile
==============================================================================
--- head/textproc/p5-Text-BibTeX/Makefile	Wed May  1 17:56:57 2019	(r500600)
+++ head/textproc/p5-Text-BibTeX/Makefile	Wed May  1 17:58:35 2019	(r500601)
@@ -18,6 +18,7 @@ BUILD_DEPENDS=	p5-Config-AutoConf>=0.16:devel/p5-Confi
 TEST_DEPENDS=	p5-Capture-Tiny>=0.06:devel/p5-Capture-Tiny
 
 USES=		perl5
+USE_CSTD=	c99
 USE_PERL5=	modbuild
 
 CFLAGS_amd64=	-fPIC


More information about the svn-ports-head mailing list