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 EA8881A921F for ; Thu, 24 Mar 2022 16:24:15 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 44E4D84F05; Thu, 24 Mar 2022 16:24:15 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8263284CED for ; Thu, 24 Mar 2022 16:24:14 +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 5hgnXyuSTrtG for ; Thu, 24 Mar 2022 16:24:14 +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 D1B9984CE0 for ; Thu, 24 Mar 2022 16:24:13 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C5DD9FB24; Thu, 24 Mar 2022 16:24:13 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1648139053192250" MIME-Version: 1.0 Date: Thu, 24 Mar 2022 16:24:13 +0000 From: "Emmanuel Dreyfus" Subject: CVS commit: pkgsrc/filesystems/ltfs-ltotape To: pkgsrc-changes@NetBSD.org Reply-To: manu@netbsd.org X-Mailer: log_accum Message-Id: <20220324162413.C5DD9FB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1648139053192250 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: manu Date: Thu Mar 24 16:24:13 UTC 2022 Modified Files: pkgsrc/filesystems/ltfs-ltotape: Makefile Log Message: Fix LP64 bug because of buggy NetBSD fuse_opt.h NetBSD has a base system fuse_opt.h with an error. see http://mail-index.netbsd.org/tech-userlevel/2022/03/23/msg013349.html Pull pkgsrc's FUSE buildlink3.mk to make sure we link with the right header cVS: ---------------------------------------------------------------------- To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 pkgsrc/filesystems/ltfs-ltotape/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1648139053192250 Content-Disposition: inline Content-Length: 917 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/filesystems/ltfs-ltotape/Makefile diff -u pkgsrc/filesystems/ltfs-ltotape/Makefile:1.8 pkgsrc/filesystems/ltfs-ltotape/Makefile:1.9 --- pkgsrc/filesystems/ltfs-ltotape/Makefile:1.8 Wed Dec 8 16:04:22 2021 +++ pkgsrc/filesystems/ltfs-ltotape/Makefile Thu Mar 24 16:24:13 2022 @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.8 2021/12/08 16:04:22 adam Exp $ +# $NetBSD: Makefile,v 1.9 2022/03/24 16:24:13 manu Exp $ GITHUB_PROJECT= ltfs-backends DISTNAME= v0.2 PKGNAME= ltfs-ltotape-${DISTNAME:S/v//} -PKGREVISION= 6 +PKGREVISION= 7 CATEGORIES= filesystems MASTER_SITES= ${MASTER_SITE_GITHUB:=LinearTapeFileSystem/}/${GITHUB_PROJECT}/archive/ DIST_SUBDIR= ${GITHUB_PROJECT} @@ -26,4 +26,5 @@ pre-configure: .include "../../filesystems/ltfs/buildlink3.mk" .include "../../textproc/icu/buildlink3.mk" +.include "../../filesystems/fuse/buildlink3.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1648139053192250--