Received: by mail.netbsd.org (Postfix, from userid 605) id 0EF9084E38; Sat, 21 Dec 2019 23:48:28 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8CB9F84D37 for ; Sat, 21 Dec 2019 23:48:27 +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 uCqeIPzv3K0N for ; Sat, 21 Dec 2019 23:48:27 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id DF9D584C2B for ; Sat, 21 Dec 2019 23:48:26 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id DDFDBFA97; Sat, 21 Dec 2019 23:48:26 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1576972106173270" MIME-Version: 1.0 Date: Sat, 21 Dec 2019 23:48:26 +0000 From: "Joerg Sonnenberger" Subject: CVS commit: pkgsrc/wm/fluxconf To: pkgsrc-changes@NetBSD.org Reply-To: joerg@netbsd.org X-Mailer: log_accum Message-Id: <20191221234826.DDFDBFA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1576972106173270 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: joerg Date: Sat Dec 21 23:48:26 UTC 2019 Modified Files: pkgsrc/wm/fluxconf: Makefile Log Message: Ignore deprecation with clang. To generate a diff of this commit: cvs rdiff -u -r1.38 -r1.39 pkgsrc/wm/fluxconf/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1576972106173270 Content-Disposition: inline Content-Length: 1257 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/wm/fluxconf/Makefile diff -u pkgsrc/wm/fluxconf/Makefile:1.38 pkgsrc/wm/fluxconf/Makefile:1.39 --- pkgsrc/wm/fluxconf/Makefile:1.38 Sun Jul 21 22:25:51 2019 +++ pkgsrc/wm/fluxconf/Makefile Sat Dec 21 23:48:26 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.38 2019/07/21 22:25:51 wiz Exp $ +# $NetBSD: Makefile,v 1.39 2019/12/21 23:48:26 joerg Exp $ # DISTNAME= fluxconf-0.9.9 @@ -19,8 +19,8 @@ USE_TOOLS+= msgfmt pkg-config .include "../../mk/compiler.mk" .if !empty(PKGSRC_COMPILER:Mclang) -_WRAP_EXTRA_ARGS.CC+= -Wno-error=invalid-source-encoding -Wno-error=format-security -Wno-error=self-assign -CWRAPPERS_APPEND.cc+= -Wno-error=invalid-source-encoding -Wno-error=format-security -Wno-error=self-assign +_WRAP_EXTRA_ARGS.CC+= -Wno-error=invalid-source-encoding -Wno-error=format-security -Wno-error=self-assign -Wno-error=deprecated-declarations +CWRAPPERS_APPEND.cc+= -Wno-error=invalid-source-encoding -Wno-error=format-security -Wno-error=self-assign -Wno-error=deprecated-declarations .elif !empty(PKGSRC_COMPILER:Mgcc) _WRAP_EXTRA_ARGS.CC+= -Wno-error=unused-but-set-parameter -Wno-error=unused-but-set-variable CWRAPPERS_APPEND.cc+= -Wno-error=unused-but-set-parameter -Wno-error=unused-but-set-variable --_----------=_1576972106173270--