summaryrefslogtreecommitdiff
path: root/math/vtk8/files/patch-IO_EnSight_vtkEnSight6BinaryReader.cxx
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--math/vtk8/files/patch-IO_EnSight_vtkEnSight6BinaryReader.cxx13
1 files changed, 13 insertions, 0 deletions
diff --git a/math/vtk8/files/patch-IO_EnSight_vtkEnSight6BinaryReader.cxx b/math/vtk8/files/patch-IO_EnSight_vtkEnSight6BinaryReader.cxx
new file mode 100644
index 000000000000..8665a1892011
--- /dev/null
+++ b/math/vtk8/files/patch-IO_EnSight_vtkEnSight6BinaryReader.cxx
@@ -0,0 +1,13 @@
+--- IO/EnSight/vtkEnSight6BinaryReader.cxx.orig 2017-11-21 07:34:56 UTC
++++ IO/EnSight/vtkEnSight6BinaryReader.cxx
+@@ -36,8 +36,8 @@
+ #if defined(_WIN32)
+ # define VTK_STAT_STRUCT struct _stat64
+ # define VTK_STAT_FUNC _stat64
+-#elif defined _DARWIN_FEATURE_64_BIT_INODE && !defined __FreeBSD__
+-// FreeBSD and OSX now deprecate stat64
++#elif defined _DARWIN_FEATURE_64_BIT_INODE || defined __FreeBSD__
++// FreeBSD and OSX use stat
+ # define VTK_STAT_STRUCT struct stat
+ # define VTK_STAT_FUNC stat
+ #else