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
path: root/extern
diff options
context:
space:
mode:
authorSebastián Barschkis <sebbas@sebbas.org>2020-02-19 21:31:48 +0300
committerSebastián Barschkis <sebbas@sebbas.org>2020-02-19 21:34:23 +0300
commitbda8076d354ce9ce587d315bff4a089094af5847 (patch)
tree274364a54270a23e110fdcbeea84917865b11a69 /extern
parent05fd2acf895847c51d8c02166a87d9fa50def39c (diff)
Fluid: Temporary fix for gzopen on windows
Needs more consideration. This fixes compilation for now.
Diffstat (limited to 'extern')
-rw-r--r--extern/mantaflow/preprocessed/fileio/ioutil.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/extern/mantaflow/preprocessed/fileio/ioutil.cpp b/extern/mantaflow/preprocessed/fileio/ioutil.cpp
index 7c1682dfc5e..0bbbc7b6d11 100644
--- a/extern/mantaflow/preprocessed/fileio/ioutil.cpp
+++ b/extern/mantaflow/preprocessed/fileio/ioutil.cpp
@@ -29,7 +29,7 @@ namespace Manta {
void *safeGzopen(const char *filename, const char *mode)
{
gzFile gzfile;
-# if defined(WIN32) || defined(_WIN32)
+# if 0
UTF16_ENCODE(filename);
// gzopen_w() is supported since zlib v1.2.7