Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-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 0AB931A921F for ; Mon, 16 Nov 2020 11:05:55 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 18FE384DD4; Mon, 16 Nov 2020 11:05:54 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5320784DCE for ; Mon, 16 Nov 2020 11:05:53 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id i9I_hSbHElF5 for ; Mon, 16 Nov 2020 11:05:52 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id AE20284CE3 for ; Mon, 16 Nov 2020 11:05:52 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A7AD9FA9D; Mon, 16 Nov 2020 11:05:52 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1605524752180130" MIME-Version: 1.0 Date: Mon, 16 Nov 2020 11:05:52 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/graphics/libheif To: pkgsrc-changes@NetBSD.org Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20201116110552.A7AD9FA9D@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1605524752180130 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: ryoon Date: Mon Nov 16 11:05:52 UTC 2020 Modified Files: pkgsrc/graphics/libheif: Makefile Log Message: libheif: Fix build under NetBSD/amd64 8 Disable -Werror=maybe-uninitialized for NetBSD. Reported by gdt@. Thank you. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/graphics/libheif/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1605524752180130 Content-Disposition: inline Content-Length: 649 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/libheif/Makefile diff -u pkgsrc/graphics/libheif/Makefile:1.6 pkgsrc/graphics/libheif/Makefile:1.7 --- pkgsrc/graphics/libheif/Makefile:1.6 Sun Oct 11 23:47:31 2020 +++ pkgsrc/graphics/libheif/Makefile Mon Nov 16 11:05:52 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2020/10/11 23:47:31 joerg Exp $ +# $NetBSD: Makefile,v 1.7 2020/11/16 11:05:52 ryoon Exp $ DISTNAME= libheif-1.9.1 PKGREVISION= 1 @@ -19,6 +19,8 @@ USE_LANGUAGES= c c++ CONFIGURE_ARGS+= --disable-go +CXXFLAGS.NetBSD+= -Wno-error=maybe-uninitialized + PKGCONFIG_OVERRIDE+= libheif.pc.in .include "../../mk/jpeg.buildlink3.mk" --_----------=_1605524752180130--