Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 59B371A9217 for ; Fri, 8 Jan 2021 09:31:34 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 18E7A84D53; Fri, 8 Jan 2021 09:31:34 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5316784D27 for ; Fri, 8 Jan 2021 09:31:33 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id ZGx-O-aYfu0m for ; Fri, 8 Jan 2021 09:31:32 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id A714A84CBC for ; Fri, 8 Jan 2021 09:31:32 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 9FF49FA9D; Fri, 8 Jan 2021 09:31:32 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1610098292122140" MIME-Version: 1.0 Date: Fri, 8 Jan 2021 09:31:32 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/audio/musicpd To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20210108093132.9FF49FA9D@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1610098292122140 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Fri Jan 8 09:31:32 UTC 2021 Modified Files: pkgsrc/audio/musicpd: Makefile Log Message: musicpd: Lower GCC requirement. This is a build fix for NetBSD/earm... To generate a diff of this commit: cvs rdiff -u -r1.232 -r1.233 pkgsrc/audio/musicpd/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1610098292122140 Content-Disposition: inline Content-Length: 974 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/audio/musicpd/Makefile diff -u pkgsrc/audio/musicpd/Makefile:1.232 pkgsrc/audio/musicpd/Makefile:1.233 --- pkgsrc/audio/musicpd/Makefile:1.232 Fri Jan 1 09:52:17 2021 +++ pkgsrc/audio/musicpd/Makefile Fri Jan 8 09:31:32 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.232 2021/01/01 09:52:17 ryoon Exp $ +# $NetBSD: Makefile,v 1.233 2021/01/08 09:31:32 nia Exp $ DISTNAME= mpd-0.22.3 PKGNAME= ${DISTNAME:S/mpd/musicpd/} @@ -17,8 +17,14 @@ CONFLICTS= mpd-[0-9]* USE_TOOLS+= pkg-config USE_LANGUAGES= c c++ -# c++17 -GCC_REQD+= 8 +# The upstream changelog recommends gcc8, but it compiles fine with 7.5.0 +# (NetBSD 9.1) using -std=c++17. +# +# Please be cautious of raising this requirement - mpd seems to adopt new C++ +# standards quickly. Notably, gcc8 from pkgsrc doesn't have support for +# NetBSD/earmv7hf. gcc10 should, but fails for other reasons (TODO: +# investigate). +GCC_REQD+= 7 MESON_ARGS+= -Ddocumentation=enabled --_----------=_1610098292122140--