Received: by mail.netbsd.org (Postfix, from userid 605) id 51A7D84E58; Sun, 22 Dec 2019 22:22:28 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CF01384E57 for ; Sun, 22 Dec 2019 22:22:27 +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 LvcfkMehgoUO for ; Sun, 22 Dec 2019 22:22: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 3422D84E2E for ; Sun, 22 Dec 2019 22:22:27 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 32023FA97; Sun, 22 Dec 2019 22:22:27 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1577053347136230" MIME-Version: 1.0 Date: Sun, 22 Dec 2019 22:22:27 +0000 From: "Joerg Sonnenberger" Subject: CVS commit: pkgsrc/devel/libdbusmenu-tools To: pkgsrc-changes@NetBSD.org Reply-To: joerg@netbsd.org X-Mailer: log_accum Message-Id: <20191222222227.32023FA97@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. --_----------=_1577053347136230 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: joerg Date: Sun Dec 22 22:22:27 UTC 2019 Modified Files: pkgsrc/devel/libdbusmenu-tools: Makefile Log Message: Ignore deprecation with clang. To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 pkgsrc/devel/libdbusmenu-tools/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1577053347136230 Content-Disposition: inline Content-Length: 866 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/libdbusmenu-tools/Makefile diff -u pkgsrc/devel/libdbusmenu-tools/Makefile:1.16 pkgsrc/devel/libdbusmenu-tools/Makefile:1.17 --- pkgsrc/devel/libdbusmenu-tools/Makefile:1.16 Wed Nov 6 14:34:30 2019 +++ pkgsrc/devel/libdbusmenu-tools/Makefile Sun Dec 22 22:22:27 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 2019/11/06 14:34:30 wiz Exp $ +# $NetBSD: Makefile,v 1.17 2019/12/22 22:22:27 joerg Exp $ PKGREVISION= 15 .include "../../meta-pkgs/libdbusmenu/Makefile.common" @@ -14,6 +14,12 @@ CONFIGURE_ARGS+= --disable-introspection CONFIGURE_ARGS+= --disable-vala CONFIGURE_ARGS+= --enable-tests +.include "../../mk/compiler.mk" + +.if !empty(PKGSRC_COMPILER:Mclang) +CFLAGS+= -Wno-deprecated-declarations +.endif + post-configure: ${LN} -sf ${BUILDLINK_DIR}/lib/libdbusmenu-glib.la \ ${WRKSRC}/libdbusmenu-glib/ --_----------=_1577053347136230--