Received: by mail.netbsd.org (Postfix, from userid 605) id BC9FA84D9E; Tue, 13 Apr 2021 08:05:31 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 00F1F84D14 for ; Tue, 13 Apr 2021 08:05:31 +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 AVZ1ksdN9Nj3 for ; Tue, 13 Apr 2021 08:05:30 +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 4BA5684D04 for ; Tue, 13 Apr 2021 08:05:30 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 38211FA95; Tue, 13 Apr 2021 08:05:30 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_161830113069820" MIME-Version: 1.0 Date: Tue, 13 Apr 2021 08:05:30 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/sysutils/9base To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20210413080530.38211FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_161830113069820 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Tue Apr 13 08:05:30 UTC 2021 Modified Files: pkgsrc/sysutils/9base: Makefile Log Message: 9base: disable FORTIFY_SOURCE or this fails horribly remove netbsd-5 workaround bump PKGREVISION To generate a diff of this commit: cvs rdiff -u -r1.20 -r1.21 pkgsrc/sysutils/9base/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_161830113069820 Content-Disposition: inline Content-Length: 1034 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/9base/Makefile diff -u pkgsrc/sysutils/9base/Makefile:1.20 pkgsrc/sysutils/9base/Makefile:1.21 --- pkgsrc/sysutils/9base/Makefile:1.20 Mon Nov 4 21:28:40 2019 +++ pkgsrc/sysutils/9base/Makefile Tue Apr 13 08:05:30 2021 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.20 2019/11/04 21:28:40 rillig Exp $ +# $NetBSD: Makefile,v 1.21 2021/04/13 08:05:30 nia Exp $ DISTNAME= 9base-6 -PKGREVISION= 2 PKGNAME= 9base-20100604 +PKGREVISION= 2 CATEGORIES= sysutils shells MASTER_SITES= http://dl.suckless.org/tools/ @@ -17,6 +17,9 @@ CONFLICTS= rc-[0-9]* PKG_SHELL= bin/rc +# commits utter sins with sprintf() macros; glhf +FORTIFY_SUPPORTED= no + .include "../../mk/bsd.prefs.mk" # Darwin doesn't support static link. @@ -31,11 +34,6 @@ LDFLAGS+= -lsocket -lnsl LDFLAGS+= -static .endif -#XXX see http://gnats.netbsd.org/43228 -.if !empty(MACHINE_PLATFORM:MNetBSD-5.[0-8]*) -BUILDLINK_TRANSFORM+= rm:-static -.endif - PREFIX9P= ${PREFIX}/9base MAKE_FLAGS+= PREFIX=${PREFIX9P} \ --_----------=_161830113069820--