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 63D541A9239 for ; Thu, 18 Nov 2021 14:10:36 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 9AF6A84EE2; Thu, 18 Nov 2021 14:10:35 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2F55A84EDE for ; Thu, 18 Nov 2021 14:07:21 +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 aQm_k5CGhr43 for ; Thu, 18 Nov 2021 14:07:20 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 7D1EC84CD9 for ; Thu, 18 Nov 2021 14:07:20 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 7131DFAEC; Thu, 18 Nov 2021 14:07:20 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1637244440283120" MIME-Version: 1.0 Date: Thu, 18 Nov 2021 14:07:20 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/net/ncftp3 To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20211118140720.7131DFAEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1637244440283120 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Thu Nov 18 14:07:20 UTC 2021 Modified Files: pkgsrc/net/ncftp3: Makefile Log Message: ncftp3: disable precompiled headers for GCC incompatible with various hardening features among other nastiness To generate a diff of this commit: cvs rdiff -u -r1.34 -r1.35 pkgsrc/net/ncftp3/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1637244440283120 Content-Disposition: inline Content-Length: 743 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/ncftp3/Makefile diff -u pkgsrc/net/ncftp3/Makefile:1.34 pkgsrc/net/ncftp3/Makefile:1.35 --- pkgsrc/net/ncftp3/Makefile:1.34 Mon May 24 19:53:21 2021 +++ pkgsrc/net/ncftp3/Makefile Thu Nov 18 14:07:20 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.34 2021/05/24 19:53:21 wiz Exp $ +# $NetBSD: Makefile,v 1.35 2021/11/18 14:07:20 nia Exp $ DISTNAME= ncftp-3.2.6-src PKGNAME= ${DISTNAME:S/ncftp/ncftp3/:S/-src//} @@ -18,5 +18,10 @@ USE_TOOLS+= perl:build GNU_CONFIGURE= yes CONFIGURE_ARGS+= --disable-universal +.include "../../mk/bsd.prefs.mk" +.if !empty(PKGSRC_COMPILER:M*gcc*) +CONFIGURE_ARGS+= --disable-precomp +.endif + .include "../../mk/curses.buildlink3.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1637244440283120--