svn commit: r561355 - branches/2021Q1/sysutils/cinnamon-settings-daemon

Piotr Kubaj pkubaj at FreeBSD.org
Tue Jan 12 17:37:55 UTC 2021


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
 


More information about the svn-ports-branches mailing list