svn commit: r508570 - head/graphics/scrot

Mark Linimon linimon at FreeBSD.org
Sun Aug 11 00:00:56 UTC 2019


Author: linimon
Date: Sun Aug 11 00:00:54 2019
New Revision: 508570
URL: https://svnweb.freebsd.org/changeset/ports/508570

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

Modified:
  head/graphics/scrot/Makefile

Modified: head/graphics/scrot/Makefile
==============================================================================
--- head/graphics/scrot/Makefile	Sat Aug 10 22:55:10 2019	(r508569)
+++ head/graphics/scrot/Makefile	Sun Aug 11 00:00:54 2019	(r508570)
@@ -19,6 +19,7 @@ USE_GITHUB=	yes
 GH_ACCOUNT=	resurrecting-open-source-projects
 
 USES=		autoreconf
+USE_CSTD=	c99
 GNU_CONFIGURE=	yes
 USE_XORG=	x11 xfixes xcursor
 


More information about the svn-ports-all mailing list