From 6b4e33e7e99498616da5b9dec28520f52c184a68 Mon Sep 17 00:00:00 2001 From: wkliao Date: Mon, 14 Nov 2022 11:43:43 -0600 Subject: [PATCH] Currently not support HDF5 1.13.3s but will change, if the future releases of HDF5 fix the problem. See https://github.com/HDFGroup/hdf5/issues/2220 --- configure.ac | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index dc4ba5a2..ce0eec24 100644 --- a/configure.ac +++ b/configure.ac @@ -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 -#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])