svn commit: r529252 - head/multimedia/pipewire

Piotr Kubaj pkubaj at FreeBSD.org
Fri Mar 27 14:30:43 UTC 2020


Author: pkubaj
Date: Fri Mar 27 14:24:05 2020
New Revision: 529252
URL: https://svnweb.freebsd.org/changeset/ports/529252

Log:
  multimedia/pipewire: fix build on GCC architectures
  
  Base GCC doesn't support -Wsuggest-attribute=format:
  cc1: error: unrecognized command line option "-Wimplicit-fallthrough"
  cc1: error: -Werror=suggest-attribute=format: No option -Wsuggest-attribute=format

Modified:
  head/multimedia/pipewire/Makefile

Modified: head/multimedia/pipewire/Makefile
==============================================================================
--- head/multimedia/pipewire/Makefile	Fri Mar 27 14:10:30 2020	(r529251)
+++ head/multimedia/pipewire/Makefile	Fri Mar 27 14:24:05 2020	(r529252)
@@ -17,7 +17,7 @@ LIB_DEPENDS=	libasound.so:audio/alsa-lib \
 		libepoll-shim.so:devel/libepoll-shim \
 		libudev.so:devel/libudev-devd
 
-USES=		gnome meson pkgconfig
+USES=		compiler:c11 gnome meson pkgconfig
 
 USE_GNOME=	glib20
 USE_LDCONFIG=	yes


More information about the svn-ports-all mailing list