svn commit: r552972 - branches/2020Q4/net/dhcpd-pools

Piotr Kubaj pkubaj at FreeBSD.org
Thu Oct 22 13:18:59 UTC 2020


Author: pkubaj
Date: Thu Oct 22 13:18:58 2020
New Revision: 552972
URL: https://svnweb.freebsd.org/changeset/ports/552972

Log:
  MFH: r552971
  
  net/dhcpd-pools: fix build on GCC architectures
  
  Use C99 mode:
  nstrftime.c:1143: error: 'for' loop initial declaration used outside C99 mode
  
  Approved by:	portmgr (fix build blanket)

Modified:
  branches/2020Q4/net/dhcpd-pools/Makefile
Directory Properties:
  branches/2020Q4/   (props changed)

Modified: branches/2020Q4/net/dhcpd-pools/Makefile
==============================================================================
--- branches/2020Q4/net/dhcpd-pools/Makefile	Thu Oct 22 13:18:10 2020	(r552971)
+++ branches/2020Q4/net/dhcpd-pools/Makefile	Thu Oct 22 13:18:58 2020	(r552972)
@@ -16,6 +16,7 @@ LICENSE_FILE=	${WRKSRC}/COPYING
 BUILD_DEPENDS=	${LOCALBASE}/include/uthash.h:devel/uthash
 
 USES=		charsetfix shebangfix tar:xz
+USE_CSTD=	c99
 SHEBANG_FILES=	contrib/snmptest.pl
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--with-dhcpd-conf=${LOCALBASE}/etc/dhcpd.conf \


More information about the svn-ports-all mailing list