svn commit: r530876 - head/finance/homebank

Piotr Kubaj pkubaj at FreeBSD.org
Mon Apr 6 11:51:02 UTC 2020


Author: pkubaj
Date: Mon Apr  6 11:51:01 2020
New Revision: 530876
URL: https://svnweb.freebsd.org/changeset/ports/530876

Log:
  finance/homebank: fix build on GCC architectures
  
  Base GCC uses C89 by default:
  ui-budget-tabview.c:2910: error: 'for' loop initial declaration used outside C99 mode
  
  MFH:		2020Q2 (build fix blanket)

Modified:
  head/finance/homebank/Makefile

Modified: head/finance/homebank/Makefile
==============================================================================
--- head/finance/homebank/Makefile	Mon Apr  6 11:45:45 2020	(r530875)
+++ head/finance/homebank/Makefile	Mon Apr  6 11:51:01 2020	(r530876)
@@ -17,6 +17,7 @@ LIB_DEPENDS=	libsoup-2.4.so:devel/libsoup \
 GNU_CONFIGURE=	yes
 USES=		desktop-file-utils gettext gmake gnome localbase pkgconfig \
 		shared-mime-info
+USE_CSTD=	c99
 USE_GNOME=	cairo gtk30 intltool
 INSTALLS_ICONS=	yes
 


More information about the svn-ports-head mailing list