Received: by mail.netbsd.org (Postfix, from userid 605) id 9F0EC84D87; Thu, 3 Jun 2021 06:55:01 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id DA0DA84D74 for ; Thu, 3 Jun 2021 06:55:00 +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 s_bF4alW03U6 for ; Thu, 3 Jun 2021 06:55:00 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 3922584D67 for ; Thu, 3 Jun 2021 06:55:00 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 32875FA95; Thu, 3 Jun 2021 06:55:00 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_162270330048840" MIME-Version: 1.0 Date: Thu, 3 Jun 2021 06:55:00 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/archivers To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20210603065500.32875FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_162270330048840 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Thu Jun 3 06:55:00 UTC 2021 Modified Files: pkgsrc/archivers/lz4: Makefile pkgsrc/archivers/zstd: Makefile Log Message: Document workarounds. To generate a diff of this commit: cvs rdiff -u -r1.21 -r1.22 pkgsrc/archivers/lz4/Makefile cvs rdiff -u -r1.42 -r1.43 pkgsrc/archivers/zstd/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_162270330048840 Content-Disposition: inline Content-Length: 1301 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/archivers/lz4/Makefile diff -u pkgsrc/archivers/lz4/Makefile:1.21 pkgsrc/archivers/lz4/Makefile:1.22 --- pkgsrc/archivers/lz4/Makefile:1.21 Wed Jun 2 20:01:42 2021 +++ pkgsrc/archivers/lz4/Makefile Thu Jun 3 06:55:00 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.21 2021/06/02 20:01:42 nia Exp $ +# $NetBSD: Makefile,v 1.22 2021/06/03 06:55:00 nia Exp $ DISTNAME= lz4-1.9.3 CATEGORIES= archivers @@ -15,6 +15,7 @@ USE_TOOLS+= gmake pkg-config PKGCONFIG_OVERRIDE+= lib/liblz4.pc.in TEST_TARGET= test +# Needed for nanosleep() on Solaris 10, PR pkg/56226 LDFLAGS.SunOS+= -lrt .include "../../mk/bsd.pkg.mk" Index: pkgsrc/archivers/zstd/Makefile diff -u pkgsrc/archivers/zstd/Makefile:1.42 pkgsrc/archivers/zstd/Makefile:1.43 --- pkgsrc/archivers/zstd/Makefile:1.42 Thu Jun 3 06:43:42 2021 +++ pkgsrc/archivers/zstd/Makefile Thu Jun 3 06:54:59 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.42 2021/06/03 06:43:42 nia Exp $ +# $NetBSD: Makefile,v 1.43 2021/06/03 06:54:59 nia Exp $ DISTNAME= zstd-1.5.0 CATEGORIES= archivers @@ -43,6 +43,7 @@ MAKE_FLAGS+= INSTALL=${INSTALL:Q} BUILD_TARGET= allmost TEST_TARGET= test +# Needed for nanosleep() on Solaris 10, PR pkg/56225 LDFLAGS.SunOS+= -lrt .include "../../archivers/lz4/buildlink3.mk" --_----------=_162270330048840--