Received: by mail.netbsd.org (Postfix, from userid 605) id 5057784E1E; Wed, 18 Mar 2020 18:01:24 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CBE5284E1D for ; Wed, 18 Mar 2020 18:01:23 +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 EHJ55oV8sKhc for ; Wed, 18 Mar 2020 18:01:23 +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 300AC84E1C for ; Wed, 18 Mar 2020 18:01:23 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2C3B3FB27; Wed, 18 Mar 2020 18:01:23 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1584554483257690" MIME-Version: 1.0 Date: Wed, 18 Mar 2020 18:01:23 +0000 From: "Joerg Sonnenberger" Subject: CVS commit: pkgsrc/textproc/json-glib To: pkgsrc-changes@NetBSD.org Reply-To: joerg@netbsd.org X-Mailer: log_accum Message-Id: <20200318180123.2C3B3FB27@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. --_----------=_1584554483257690 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: joerg Date: Wed Mar 18 18:01:23 UTC 2020 Modified Files: pkgsrc/textproc/json-glib: Makefile Log Message: Make some int cast warnings non-fatal for clang To generate a diff of this commit: cvs rdiff -u -r1.31 -r1.32 pkgsrc/textproc/json-glib/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1584554483257690 Content-Disposition: inline Content-Length: 896 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/json-glib/Makefile diff -u pkgsrc/textproc/json-glib/Makefile:1.31 pkgsrc/textproc/json-glib/Makefile:1.32 --- pkgsrc/textproc/json-glib/Makefile:1.31 Sun Mar 8 16:48:14 2020 +++ pkgsrc/textproc/json-glib/Makefile Wed Mar 18 18:01:23 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.31 2020/03/08 16:48:14 wiz Exp $ +# $NetBSD: Makefile,v 1.32 2020/03/18 18:01:23 joerg Exp $ DISTNAME= json-glib-1.4.4 PKGREVISION= 1 @@ -15,6 +15,13 @@ USE_TOOLS+= gmake msgfmt msgmerge pkg-co CONFIGURE_ARGS+= --disable-man +.include "../../mk/compiler.mk" + +.if !empty(PKGSRC_COMPILER:Mclang) +_WRAP_EXTRA_ARGS.CC+= -Wno-error=void-pointer-to-int-cast +CWRAPPERS_APPEND.cc+= -Wno-error=void-pointer-to-int-cast +.endif + # workaround for build failure # https://gitlab.gnome.org/GNOME/json-glib/issues/35 MAKE_ENV+= LD_LIBRARY_PATH=${WRKSRC}/output/json-glib --_----------=_1584554483257690--