spack/var/spack/repos/builtin/packages/visit/parallel-hdf5.patch
Seth R. Johnson d01a8f7cd6 Fix visit+ (#13652)
* Propagate MPI option in VTK to NetCDF

This fixes a conflict message reads as though NetCDF always requires
hdf5+mpi. It allows `visit~mpi` to resolve correctly without an
additional `^netcdf~mpi`.

* Tell VisIt not to look for 'hdf5_mpi' library
2019-11-09 12:47:04 -06:00

20 lines
653 B
Diff

--- a/src/CMake/FindHDF5.cmake 2019-02-15 18:31:27.000000000 -0500
+++ b/src/CMake/FindHDF5.cmake 2019-11-08 07:57:26.000000000 -0500
@@ -46,7 +46,7 @@
#
#****************************************************************************/
-# Use the HDF5_DIR hint from the config-site .cmake file
+# Use the HDF5_DIR hint from the config-site .cmake file
INCLUDE(${VISIT_SOURCE_DIR}/CMake/SetUpThirdParty.cmake)
@@ -73,6 +73,6 @@
ELSE()
SET_UP_THIRD_PARTY(HDF5 lib include hdf5)
IF(VISIT_PARALLEL)
- SET_UP_THIRD_PARTY(HDF5_MPI lib include hdf5_mpi)
+ SET_UP_THIRD_PARTY(HDF5_MPI lib include hdf5)
ENDIF(VISIT_PARALLEL)
ENDIF()