svn commit: r551705 - head/irc/eggdrop-devel

Piotr Kubaj pkubaj at FreeBSD.org
Thu Oct 8 13:13:43 UTC 2020


Author: pkubaj
Date: Thu Oct  8 13:13:42 2020
New Revision: 551705
URL: https://svnweb.freebsd.org/changeset/ports/551705

Log:
  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)

Modified:
  head/irc/eggdrop-devel/Makefile

Modified: head/irc/eggdrop-devel/Makefile
==============================================================================
--- head/irc/eggdrop-devel/Makefile	Thu Oct  8 12:55:05 2020	(r551704)
+++ head/irc/eggdrop-devel/Makefile	Thu Oct  8 13:13:42 2020	(r551705)
@@ -13,6 +13,7 @@ LICENSE=	GPLv2
 LICENSE_FILE=	${WRKSRC}/COPYING
 
 USES=		tcl ssl
+USE_CSTD=	c99
 
 USE_GITHUB=	yes
 GH_ACCOUNT=	eggheads


More information about the svn-ports-head mailing list