diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2020-10-08 13:13:42 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2020-10-08 13:13:42 +0000 |
commit | 279970f51c6f485a811dd24be9b641ba60d97007 (patch) | |
tree | 3551b68e96eca04bad533d4acef85f27db55fbc7 | |
parent | f26bc9321b4bc6eaa8c17df3a8f89928c4761a2f (diff) | |
download | freebsd-ports-279970f51c6f485a811dd24be9b641ba60d97007.zip |
irc/eggdrop-devel: fix build on GCC architectures
Use C99 mode:
.././server.mod/isupport.c:178: error: 'for' loop initial declaration used outside C99 mode
MFH: 2020Q4 (fix build blanket)
-rw-r--r-- | irc/eggdrop-devel/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/irc/eggdrop-devel/Makefile b/irc/eggdrop-devel/Makefile index bb28232535dd..2920614fc270 100644 --- a/irc/eggdrop-devel/Makefile +++ b/irc/eggdrop-devel/Makefile @@ -13,6 +13,7 @@ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING USES= tcl ssl +USE_CSTD= c99 USE_GITHUB= yes GH_ACCOUNT= eggheads |