svn commit: r533276 - branches/2020Q2/net-mgmt/bgpq4

Piotr Kubaj pkubaj at FreeBSD.org
Tue Apr 28 21:25:16 UTC 2020


Author: pkubaj
Date: Tue Apr 28 21:25:16 2020
New Revision: 533276
URL: https://svnweb.freebsd.org/changeset/ports/533276

Log:
  MFH: r533275
  
  net-mgmt/bgpq4: fix build on GCC architectures
  
  C11 compiler is necessary:
  cc1: error: unrecognized command line option "-std=gnu11"
  
  Adjust MAKE_ARGS because make insists on using cc.
  
  Approved by:	portmgr (fix build blanket)

Modified:
  branches/2020Q2/net-mgmt/bgpq4/Makefile
Directory Properties:
  branches/2020Q2/   (props changed)

Modified: branches/2020Q2/net-mgmt/bgpq4/Makefile
==============================================================================
--- branches/2020Q2/net-mgmt/bgpq4/Makefile	Tue Apr 28 21:21:27 2020	(r533275)
+++ branches/2020Q2/net-mgmt/bgpq4/Makefile	Tue Apr 28 21:25:16 2020	(r533276)
@@ -11,8 +11,10 @@ COMMENT=	Lightweight prefix-list generator for various
 LICENSE=	BSD2CLAUSE
 LICENSE_FILE=	${WRKSRC}/COPYRIGHT
 
-USES=		autoreconf
+USES=		autoreconf compiler:c11
 USE_GITHUB=	yes
+
+MAKE_ARGS+=	CC="${CC}"
 
 GH_ACCOUNT=	bgp
 


More information about the svn-ports-branches mailing list