svn commit: r520960 - head/multimedia/mpv-mpris

Piotr Kubaj pkubaj at FreeBSD.org
Fri Dec 27 00:26:52 UTC 2019


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


More information about the svn-ports-all mailing list