Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source/blender/blenloader/intern/readfile.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index ec30ccd7517..ca36deeaa80 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -225,7 +225,9 @@
/**
* Delay reading blocks we might not use (especially applies to library linking).
* which keeps large arrays in memory from data-blocks we may not even use. */
-#define USE_BHEAD_READ_ON_DEMAND
+#if !defined(_WIN32) /* Slow on windows, see: T61855 */
+# define USE_BHEAD_READ_ON_DEMAND
+#endif
/* use GHash for BHead name-based lookups (speeds up linking) */
#define USE_GHASH_BHEAD