Received: by mail.netbsd.org (Postfix, from userid 605) id 34D8184E90; Sat, 24 Sep 2022 08:27:54 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6436984E83 for ; Sat, 24 Sep 2022 08:27:53 +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 qno4iUrVdl_n for ; Sat, 24 Sep 2022 08:27:53 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B363A84D58 for ; Sat, 24 Sep 2022 08:27:52 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id ACF98FA90; Sat, 24 Sep 2022 08:27:52 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_166400807242510" MIME-Version: 1.0 Date: Sat, 24 Sep 2022 08:27:52 +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: <20220924082752.ACF98FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_166400807242510 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sat Sep 24 08:27:52 UTC 2022 Modified Files: pkgsrc/sysutils/9base: Makefile Log Message: 9base: do not force static linking To generate a diff of this commit: cvs rdiff -u -r1.21 -r1.22 pkgsrc/sysutils/9base/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_166400807242510 Content-Disposition: inline Content-Length: 1103 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.21 pkgsrc/sysutils/9base/Makefile:1.22 --- pkgsrc/sysutils/9base/Makefile:1.21 Tue Apr 13 08:05:30 2021 +++ pkgsrc/sysutils/9base/Makefile Sat Sep 24 08:27:52 2022 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.21 2021/04/13 08:05:30 nia Exp $ +# $NetBSD: Makefile,v 1.22 2022/09/24 08:27:52 nia Exp $ DISTNAME= 9base-6 PKGNAME= 9base-20100604 -PKGREVISION= 2 +PKGREVISION= 3 CATEGORIES= sysutils shells MASTER_SITES= http://dl.suckless.org/tools/ @@ -20,19 +20,8 @@ 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. -# See http://developer.apple.com/library/mac/#qa/qa1118/_index.html -.if ${OPSYS} == "Darwin" -BUILDLINK_TRANSFORM+= rm:-static -.elif ${OPSYS} == "SunOS" -BUILDLINK_TRANSFORM+= rm:-static -CFLAGS+= -DPLAN9PORT -LDFLAGS+= -lsocket -lnsl -.else -LDFLAGS+= -static -.endif +CFLAGS.SunOS+= -DPLAN9PORT +LDFLAGS.SunOS+= -lsocket -lnsl PREFIX9P= ${PREFIX}/9base --_----------=_166400807242510--