svn commit: r557238 - head/devel/cligen

Piotr Kubaj pkubaj at FreeBSD.org
Mon Dec 7 16:47:37 UTC 2020


Author: pkubaj
Date: Mon Dec  7 16:47:37 2020
New Revision: 557238
URL: https://svnweb.freebsd.org/changeset/ports/557238

Log:
  devel/cligen: fix build on GCC architectures
  
  In file included from cligen_object.c:63:
  cligen_object.h:98: error: redefinition of typedef 'parse_tree'
  cligen_parsetree.h:53: error: previous declaration of 'parse_tree' was here
  cligen_object.h:187: error: redefinition of typedef 'cg_obj'
  cligen_parsetree.h:51: error: previous declaration of 'cg_obj' was here

Modified:
  head/devel/cligen/Makefile

Modified: head/devel/cligen/Makefile
==============================================================================
--- head/devel/cligen/Makefile	Mon Dec  7 16:46:08 2020	(r557237)
+++ head/devel/cligen/Makefile	Mon Dec  7 16:47:37 2020	(r557238)
@@ -10,7 +10,7 @@ COMMENT=	Command-line interface generator
 LICENSE=	APACHE20
 LICENSE_FILE=	${WRKSRC}/LICENSE.md
 
-USES=		bison:alias gmake
+USES=		bison:alias compiler:c11 gmake
 
 USE_GITHUB=	yes
 GH_ACCOUNT=	clicon


More information about the svn-ports-all mailing list