From owner-svn-ports-all@freebsd.org Fri Mar 27 14:30:43 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 0845D27778A; Fri, 27 Mar 2020 14:30:43 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48pkmK61j2z3wgh; Fri, 27 Mar 2020 14:30:41 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0DD3D22872; Fri, 27 Mar 2020 14:24:06 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 02REO5nB064535; Fri, 27 Mar 2020 14:24:05 GMT (envelope-from pkubaj@FreeBSD.org) Received: (from pkubaj@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 02REO5lF064534; Fri, 27 Mar 2020 14:24:05 GMT (envelope-from pkubaj@FreeBSD.org) Message-Id: <202003271424.02REO5lF064534@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pkubaj set sender to pkubaj@FreeBSD.org using -f From: Piotr Kubaj Date: Fri, 27 Mar 2020 14:24:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r529252 - head/multimedia/pipewire X-SVN-Group: ports-head X-SVN-Commit-Author: pkubaj X-SVN-Commit-Paths: head/multimedia/pipewire X-SVN-Commit-Revision: 529252 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Mar 2020 14:30:43 -0000 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