Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 12 Jan 2021 17:37:55 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r561355 - branches/2021Q1/sysutils/cinnamon-settings-daemon
Message-ID:  <202101121737.10CHbtRX059755@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Tue Jan 12 17:37:54 2021
New Revision: 561355
URL: https://svnweb.freebsd.org/changeset/ports/561355

Log:
  MFH: r561354
  
  sysutils/cinnamon-settings-daemon: fix build on GCC architectures
  
  ../plugins/power/csd-power-manager.c:3490: error: 'for' loop initial declaration used outside C99 mode
  
  USE_CSTD=c99 also fixes it, but dependencies already mandate installing gcc9

Modified:
  branches/2021Q1/sysutils/cinnamon-settings-daemon/Makefile
Directory Properties:
  branches/2021Q1/   (props changed)

Modified: branches/2021Q1/sysutils/cinnamon-settings-daemon/Makefile
==============================================================================
--- branches/2021Q1/sysutils/cinnamon-settings-daemon/Makefile	Tue Jan 12 17:37:06 2021	(r561354)
+++ branches/2021Q1/sysutils/cinnamon-settings-daemon/Makefile	Tue Jan 12 17:37:54 2021	(r561355)
@@ -35,8 +35,8 @@ LIB_DEPENDS=	libcanberra.so:audio/libcanberra \
 		libharfbuzz.so:print/harfbuzz
 RUN_DEPENDS=	cinnamon-session:x11/cinnamon-session
 
-USES=		gettext-tools gnome localbase meson pkgconfig python:3.5+,build \
-		shebangfix xorg
+USES=		compiler:c11 gettext-tools gnome localbase meson pkgconfig \
+		python:3.5+,build shebangfix xorg
 USE_GNOME=	cairo gdkpixbuf2 gtk30 intltool libgnomekbd librsvg2
 USE_XORG=	x11 xext xfixes xi xtst
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202101121737.10CHbtRX059755>