Skip to content

Commit

Permalink
Currently not support HDF5 1.13.3s
Browse files Browse the repository at this point in the history
but will change, if the future releases of HDF5 fix the problem.
See HDFGroup/hdf5#2220
  • Loading branch information
wkliao committed Nov 14, 2022
1 parent 56a26f0 commit 6b4e33e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -350,18 +350,18 @@ if test x$hdf5_ge_1_13_0 = xno; then
H5VL_log requires HDF5 1.13.0 and later. Abort.
-----------------------------------------------------------------------])
fi
AC_MSG_CHECKING([whether HDF5 version smaller than 1.13.3])
AC_MSG_CHECKING([whether HDF5 version is 1.13.3])
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
#include <hdf5.h>
#if (H5_VERS_MAJOR*1000000 + H5_VERS_MINOR*1000 + H5_VERS_RELEASE >= 1013003)
#error HDF5 version is greater than 1.13.2
#if (H5_VERS_MAJOR*1000000 + H5_VERS_MINOR*1000 + H5_VERS_RELEASE == 1013003)
#error HDF5 version is 1.13.3
#endif
]])], [hdf5_ge_1_13_3=no], [hdf5_ge_1_13_3=yes])
AC_MSG_RESULT([$hdf5_ge_1_13_3])
if test x$hdf5_ge_1_13_3 = xyes; then
AC_MSG_ERROR([
-----------------------------------------------------------------------
H5VL_log does not support HDF5 1.13.3 and later. Abort.
H5VL_log $H5VL_LOG_VERSION does not support HDF5 1.13.3. Abort.
-----------------------------------------------------------------------])
fi
AC_MSG_CHECKING([whether HDF5 parallel I/O is enabled])
Expand Down

0 comments on commit 6b4e33e

Please sign in to comment.