diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2020-03-05 01:48:54 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2020-03-05 01:48:54 +0000 |
commit | 481f53104f177354734dffb0e9c01d4e0b225072 (patch) | |
tree | 7ffa66029f6eb8c1805d574340591016eecc8c37 | |
parent | Mark as only for architectures that are supported (see pyvex_c/pyvex.c (diff) |
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)
Notes
Notes:
svn path=/head/; revision=527803
-rw-r--r-- | net/udpbroadcastrelay/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/udpbroadcastrelay/Makefile b/net/udpbroadcastrelay/Makefile index 03e0a4dc4e52..cc9353f8dee7 100644 --- a/net/udpbroadcastrelay/Makefile +++ b/net/udpbroadcastrelay/Makefile @@ -11,6 +11,7 @@ COMMENT= UDP multicast/unicast relayer LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE +USE_CSTD= c99 USE_GITHUB= yes GH_ACCOUNT= marjohn56 |