Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id C55AA1A9239 for ; Sun, 26 Dec 2021 14:28:02 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 636A984DC2; Sun, 26 Dec 2021 14:28:02 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9DA6084D84 for ; Sun, 26 Dec 2021 14:28:01 +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 dEzju-1tk2hk for ; Sun, 26 Dec 2021 14:28:01 +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 1B61B84D22 for ; Sun, 26 Dec 2021 14:28:01 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 0D450FAEC; Sun, 26 Dec 2021 14:28:01 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1640528881111970" MIME-Version: 1.0 Date: Sun, 26 Dec 2021 14:28:01 +0000 From: "Olaf Seibert" Subject: CVS commit: pkgsrc/mail To: pkgsrc-changes@NetBSD.org Reply-To: rhialto@netbsd.org X-Mailer: log_accum Message-Id: <20211226142801.0D450FAEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1640528881111970 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rhialto Date: Sun Dec 26 14:28:00 UTC 2021 Modified Files: pkgsrc/mail/milter-greylist: Makefile pkgsrc/mail/spamass-milter: Makefile Log Message: mail/milter-graylist and spamass-milter: add MKPIE_SUPPORTED=no These packages can currently not be built with PIE because the libmilter.a library they used is not built that way. To generate a diff of this commit: cvs rdiff -u -r1.85 -r1.86 pkgsrc/mail/milter-greylist/Makefile cvs rdiff -u -r1.36 -r1.37 pkgsrc/mail/spamass-milter/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1640528881111970 Content-Disposition: inline Content-Length: 1323 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mail/milter-greylist/Makefile diff -u pkgsrc/mail/milter-greylist/Makefile:1.85 pkgsrc/mail/milter-greylist/Makefile:1.86 --- pkgsrc/mail/milter-greylist/Makefile:1.85 Wed Dec 8 16:05:28 2021 +++ pkgsrc/mail/milter-greylist/Makefile Sun Dec 26 14:28:00 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.85 2021/12/08 16:05:28 adam Exp $ +# $NetBSD: Makefile,v 1.86 2021/12/26 14:28:00 rhialto Exp $ DISTNAME= milter-greylist-4.4.3 PKGREVISION= 22 @@ -13,6 +13,7 @@ LICENSE= original-bsd # yacc rule moving to y.tab.c and renaming MAKE_JOBS_SAFE= no +MKPIE_SUPPORTED= no # libmilter.a is not PIC GNU_CONFIGURE= YES BUILD_TARGET= milter-greylist Index: pkgsrc/mail/spamass-milter/Makefile diff -u pkgsrc/mail/spamass-milter/Makefile:1.36 pkgsrc/mail/spamass-milter/Makefile:1.37 --- pkgsrc/mail/spamass-milter/Makefile:1.36 Sat Jan 18 23:32:49 2020 +++ pkgsrc/mail/spamass-milter/Makefile Sun Dec 26 14:28:00 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.36 2020/01/18 23:32:49 rillig Exp $ +# $NetBSD: Makefile,v 1.37 2021/12/26 14:28:00 rhialto Exp $ # DISTNAME= spamass-milter-0.4.0 @@ -16,6 +16,7 @@ DEPENDS+= spamassassin>=2.44:../../mail/ GNU_CONFIGURE= YES USE_LANGUAGES= c c++ +MKPIE_SUPPORTED= no # libmilter.a is not PIC CPPFLAGS.SunOS+= -Du_int8_t=uint8_t --_----------=_1640528881111970--