Received: by mail.netbsd.org (Postfix, from userid 605) id 77A4584D6C; Sun, 3 May 2020 16:45:53 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0055A84D66 for ; Sun, 3 May 2020 16:45: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 EXKKhbtOQ3gG for ; Sun, 3 May 2020 16:45:52 +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 54D0284CF1 for ; Sun, 3 May 2020 16:45:52 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4EF32FB27; Sun, 3 May 2020 16:45:52 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_158852435270350" MIME-Version: 1.0 Date: Sun, 3 May 2020 16:45:52 +0000 From: "Roland Illig" Subject: CVS commit: pkgsrc/lang/cu-prolog To: pkgsrc-changes@NetBSD.org Reply-To: rillig@netbsd.org X-Mailer: log_accum Message-Id: <20200503164552.4EF32FB27@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. --_----------=_158852435270350 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rillig Date: Sun May 3 16:45:52 UTC 2020 Modified Files: pkgsrc/lang/cu-prolog: Makefile Log Message: lang/cu-prolog: suppress harmless array[char] compiler warnings To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18 pkgsrc/lang/cu-prolog/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_158852435270350 Content-Disposition: inline Content-Length: 669 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/cu-prolog/Makefile diff -u pkgsrc/lang/cu-prolog/Makefile:1.17 pkgsrc/lang/cu-prolog/Makefile:1.18 --- pkgsrc/lang/cu-prolog/Makefile:1.17 Tue Oct 2 20:11:38 2012 +++ pkgsrc/lang/cu-prolog/Makefile Sun May 3 16:45:52 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.17 2012/10/02 20:11:38 asau Exp $ +# $NetBSD: Makefile,v 1.18 2020/05/03 16:45:52 rillig Exp $ DISTNAME= cu-prolog-3.94 CATEGORIES= lang @@ -13,6 +13,9 @@ DIST_SUBDIR= ${DISTNAME} MAKE_FILE= makefile BUILD_TARGET= cup +# harmless; the calls in print.c are all guarded +BUILDLINK_TRANSFORM+= rm:-Werror=char-subscripts + INSTALLATION_DIRS= bin do-install: --_----------=_158852435270350--