Received: by mail.netbsd.org (Postfix, from userid 605) id 484F184E53; Mon, 23 May 2022 05:20:41 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 821C084D6F for ; Mon, 23 May 2022 05:20:40 +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 v2ACMQwfacOA for ; Mon, 23 May 2022 05:20:40 +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 EC25D84CBC for ; Mon, 23 May 2022 05:20:39 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id DB1BAFAEB; Mon, 23 May 2022 05:21:25 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_16532832853470" MIME-Version: 1.0 Date: Mon, 23 May 2022 05:21:25 +0000 From: "David A. Holland" Subject: CVS commit: pkgsrc/graphics/blender To: pkgsrc-changes@NetBSD.org Reply-To: dholland@netbsd.org X-Mailer: log_accum Message-Id: <20220523052125.DB1BAFAEB@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_16532832853470 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: dholland Date: Mon May 23 05:21:25 UTC 2022 Modified Files: pkgsrc/graphics/blender: distinfo Added Files: pkgsrc/graphics/blender/patches: patch-source_blender_blenlib_intern_storage.c Log Message: graphics/blender: use statvfs on solaris From Gilles Dauphin in PR 35928. To generate a diff of this commit: cvs rdiff -u -r1.66 -r1.67 pkgsrc/graphics/blender/distinfo cvs rdiff -u -r0 -r1.1 \ pkgsrc/graphics/blender/patches/patch-source_blender_blenlib_intern_storage.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_16532832853470 Content-Disposition: inline Content-Length: 2384 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/blender/distinfo diff -u pkgsrc/graphics/blender/distinfo:1.66 pkgsrc/graphics/blender/distinfo:1.67 --- pkgsrc/graphics/blender/distinfo:1.66 Mon Nov 15 17:49:09 2021 +++ pkgsrc/graphics/blender/distinfo Mon May 23 05:21:25 2022 @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.66 2021/11/15 17:49:09 wiz Exp $ +$NetBSD: distinfo,v 1.67 2022/05/23 05:21:25 dholland Exp $ BLAKE2s (blender-2.93.5.tar.xz) = 9644846b63519b9a3b3e3bf86311df2ca6eef6566fe2ce46abc26e580fb2adf5 SHA512 (blender-2.93.5.tar.xz) = 274e94fa64af0a414815d2809870982dc1093732ddad9e91318f96ce5b72102d9afab16273724127568c0e890dad921bd8f72d7b0e74c9c501b3e86f6b7cfaa0 @@ -11,6 +11,7 @@ SHA1 (patch-extern_glog_src_config.h) = SHA1 (patch-extern_glog_src_config__netbsd.h) = f96dd9d6afed38466e5765c604efebcd78537a54 SHA1 (patch-intern_cycles_kernel_svm_svm__sky.h) = bc672c23ea5f7c837d6a1f34bae87b9ef093309e SHA1 (patch-intern_guardedalloc_intern_mallocn__intern.h) = 81fb0fd1b34d550168a4bdf63f28b4e199717921 +SHA1 (patch-source_blender_blenlib_intern_storage.c) = 5f827d6e263d80e540681c5be7cad37aeae47d86 SHA1 (patch-source_blender_gpu_intern_gpu_matrix.cc) = 107866999d07a8bf74af722aa26f8b438c76ed39 SHA1 (patch-source_blender_imbuf_intern_anim_movie.c) = 1529f84515395a4764c826b90191f87131601881 SHA1 (patch-source_blender_imbuf_intern_openexr_openexr__api.cpp) = 936590a84bc5c2a25567b89fbb8f03467e41d198 Added files: Index: pkgsrc/graphics/blender/patches/patch-source_blender_blenlib_intern_storage.c diff -u /dev/null pkgsrc/graphics/blender/patches/patch-source_blender_blenlib_intern_storage.c:1.1 --- /dev/null Mon May 23 05:21:25 2022 +++ pkgsrc/graphics/blender/patches/patch-source_blender_blenlib_intern_storage.c Mon May 23 05:21:25 2022 @@ -0,0 +1,15 @@ +$NetBSD: patch-source_blender_blenlib_intern_storage.c,v 1.1 2022/05/23 05:21:25 dholland Exp $ + +Use statvfs on Solaris. (From PR 35928) + +--- source/blender/blenlib/intern/storage.c~ 2021-08-10 01:31:50.000000000 +0000 ++++ source/blender/blenlib/intern/storage.c +@@ -29,7 +29,7 @@ + + #include + +-#if defined(__NetBSD__) || defined(__DragonFly__) || defined(__HAIKU__) ++#if defined(__NetBSD__) || defined(__DragonFly__) || defined(__HAIKU__) || defined(__sun) + /* Other modern unix OS's should probably use this also. */ + # include + # define USE_STATFS_STATVFS --_----------=_16532832853470--