Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 27 Dec 2019 00:26:51 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r520960 - head/multimedia/mpv-mpris
Message-ID:  <201912270026.xBR0QpFF024796@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Fri Dec 27 00:26:51 2019
New Revision: 520960
URL: https://svnweb.freebsd.org/changeset/ports/520960

Log:
  multimedia/mpv-mpris: fix build on GCC architectures
  
  C11 compiler is necessary:
  mpris.c:299: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'vtable_root'

Modified:
  head/multimedia/mpv-mpris/Makefile

Modified: head/multimedia/mpv-mpris/Makefile
==============================================================================
--- head/multimedia/mpv-mpris/Makefile	Thu Dec 26 22:47:17 2019	(r520959)
+++ head/multimedia/mpv-mpris/Makefile	Fri Dec 27 00:26:51 2019	(r520960)
@@ -13,7 +13,7 @@ LICENSE_FILE=	${WRKSRC}/LICENSE
 BUILD_DEPENDS=	mpv:multimedia/mpv
 RUN_DEPENDS=	mpv:multimedia/mpv
 
-USES=		gettext-runtime gnome pkgconfig
+USES=		compiler:c11 gettext-runtime gnome pkgconfig
 USE_GNOME=	glib20
 USE_GITHUB=	yes
 GH_ACCOUNT=	hoyon



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