Received: by mail.netbsd.org (Postfix, from userid 605) id EC19384DC6; Thu, 21 May 2020 00:03:30 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 13E2B84D8E for ; Thu, 21 May 2020 00:00:47 +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 wEpIHLDWgKa3 for ; Thu, 21 May 2020 00:00:46 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 40B9084CEA for ; Thu, 21 May 2020 00:00:46 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 365BAFB27; Thu, 21 May 2020 00:00:46 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1590019246293970" MIME-Version: 1.0 Date: Thu, 21 May 2020 00:00:46 +0000 From: "Roland Illig" Subject: CVS commit: pkgsrc/mail/elm-me To: pkgsrc-changes@NetBSD.org Reply-To: rillig@netbsd.org X-Mailer: log_accum Message-Id: <20200521000046.365BAFB27@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. --_----------=_1590019246293970 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rillig Date: Thu May 21 00:00:46 UTC 2020 Modified Files: pkgsrc/mail/elm-me: Makefile Log Message: mail/elm-me: document harmless array[char] To generate a diff of this commit: cvs rdiff -u -r1.37 -r1.38 pkgsrc/mail/elm-me/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1590019246293970 Content-Disposition: inline Content-Length: 1125 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mail/elm-me/Makefile diff -u pkgsrc/mail/elm-me/Makefile:1.37 pkgsrc/mail/elm-me/Makefile:1.38 --- pkgsrc/mail/elm-me/Makefile:1.37 Sat Nov 2 16:25:20 2019 +++ pkgsrc/mail/elm-me/Makefile Thu May 21 00:00:46 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.37 2019/11/02 16:25:20 rillig Exp $ +# $NetBSD: Makefile,v 1.38 2020/05/21 00:00:46 rillig Exp $ DISTNAME= elm-2.4ME+93 PKGNAME= elm-me-2.4.93 @@ -27,7 +27,7 @@ INSTALLATION_DIRS= share/nls/C CONF_FILES= ${PREFIX}/lib/elm.mimetypes-dist \ ${PREFIX}/lib/elm.mimetypes -USE_TOOLS+= ksh +USE_TOOLS+= ksh SUBST_CLASSES+= errno SUBST_STAGE.errno= pre-configure @@ -35,6 +35,10 @@ SUBST_MESSAGE.errno= Fixing declaration SUBST_FILES.errno= */*.c SUBST_SED.errno= -e 's,^extern int errno;,\#include ,' +# occurs in elmlib.h and is properly protected code: +# #define hex(c) ((((c) > 0) && ((c) < 127)) ? index_hex[ (c) ] : -1) +BUILDLINK_TRANSFORM+= rm:-Werror=char-subscripts + # currently not set in files/config.sh # (should probably be a package option) #SPECIAL_PERMS+= bin/elm ${ROOT_USER} mail 2755 --_----------=_1590019246293970--