svn commit: r527803 - head/net/udpbroadcastrelay

Mark Linimon linimon at FreeBSD.org
Thu Mar 5 01:48:55 UTC 2020


Author: linimon
Date: Thu Mar  5 01:48:54 2020
New Revision: 527803
URL: https://svnweb.freebsd.org/changeset/ports/527803

Log:
  Add USE_CSTD=c99 to fix build on GCC-based systems:
  
    main.c:328: error: 'for' loop initial declaration used outside C99 mode
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/net/udpbroadcastrelay/Makefile

Modified: head/net/udpbroadcastrelay/Makefile
==============================================================================
--- head/net/udpbroadcastrelay/Makefile	Thu Mar  5 01:42:44 2020	(r527802)
+++ head/net/udpbroadcastrelay/Makefile	Thu Mar  5 01:48:54 2020	(r527803)
@@ -11,6 +11,7 @@ COMMENT=	UDP multicast/unicast relayer
 LICENSE=	GPLv2
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
+USE_CSTD=	c99
 USE_GITHUB=	yes
 GH_ACCOUNT=	marjohn56
 


More information about the svn-ports-all mailing list