Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A474A84D07 for ; Tue, 5 Sep 2023 13:25:18 +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 EL2KWgIdBcwK for ; Tue, 5 Sep 2023 13:25:18 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 021B884CFC for ; Tue, 5 Sep 2023 13:25:18 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id F00E0FBDB; Tue, 5 Sep 2023 13:25:17 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_16939203174190" MIME-Version: 1.0 Date: Tue, 5 Sep 2023 13:25:17 +0000 From: "Paolo Vincenzo Olivo" Subject: CVS commit: pkgsrc/mail/opensmtpd-filter-dkimsign To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: vins@netbsd.org X-Mailer: log_accum Message-Id: <20230905132517.F00E0FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_16939203174190 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: vins Date: Tue Sep 5 13:25:17 UTC 2023 Modified Files: pkgsrc/mail/opensmtpd-filter-dkimsign: Makefile Log Message: opensmtpd-filter-dkimsign: enable backward-compatibility for OpenBSD funcs on Linux. Required for glibc < 2.24, which lacks reallocarray() and explicit_bzero(). To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/mail/opensmtpd-filter-dkimsign/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_16939203174190 Content-Disposition: inline Content-Length: 868 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mail/opensmtpd-filter-dkimsign/Makefile diff -u pkgsrc/mail/opensmtpd-filter-dkimsign/Makefile:1.2 pkgsrc/mail/opensmtpd-filter-dkimsign/Makefile:1.3 --- pkgsrc/mail/opensmtpd-filter-dkimsign/Makefile:1.2 Mon Sep 4 05:46:29 2023 +++ pkgsrc/mail/opensmtpd-filter-dkimsign/Makefile Tue Sep 5 13:25:17 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2023/09/04 05:46:29 vins Exp $ +# $NetBSD: Makefile,v 1.3 2023/09/05 13:25:17 vins Exp $ DISTNAME= filter-dkimsign-0.6 PKGNAME= ${DISTNAME:S|^|opensmtpd-|} @@ -56,7 +56,8 @@ MAKE_ENV.Darwin+= NEED_STRTONUM=1 MAKE_ENV.Linux+= NEED_STRLCAT=1 MAKE_ENV.Linux+= NEED_STRLCPY=1 MAKE_ENV.Linux+= NEED_STRTONUM=1 - +MAKE_ENV.Linux+= NEED_EXPLICIT_BZERO=1 +MAKE_ENV.Linux+= NEED_REALLOCARRAY=1 INSTALL_ENV= INSTALL=${INSTALL:Q} INSTALLATION_DIRS+= libexec/opensmtpd ${PKGMANDIR}/man8 --_----------=_16939203174190--