pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/graphics/blender



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.

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 <sys/stat.h>
+ 
+-#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 <sys/statvfs.h>
+ #  define USE_STATFS_STATVFS



Home | Main Index | Thread Index | Old Index