mirror of https://github.com/pyodide/pyodide.git
49 lines
1.4 KiB
Diff
49 lines
1.4 KiB
Diff
diff --git a/setup_configure.py b/setup_configure.py
|
|
index 16c355b..85a4f90 100644
|
|
--- a/setup_configure.py
|
|
+++ b/setup_configure.py
|
|
@@ -183,7 +183,7 @@ class BuildConfig:
|
|
class HDF5LibWrapper:
|
|
|
|
def __init__(self, libdirs):
|
|
- self._load_hdf5_lib(libdirs)
|
|
+ pass
|
|
|
|
def _load_hdf5_lib(self, libdirs):
|
|
"""
|
|
@@ -245,23 +245,9 @@ class HDF5LibWrapper:
|
|
def autodetect_version(self):
|
|
"""
|
|
Detect the current version of HDF5, and return X.Y.Z version string.
|
|
-
|
|
- Raises an exception if anything goes wrong.
|
|
"""
|
|
- import ctypes
|
|
- from ctypes import byref
|
|
-
|
|
- major = ctypes.c_uint()
|
|
- minor = ctypes.c_uint()
|
|
- release = ctypes.c_uint()
|
|
-
|
|
- try:
|
|
- self._lib.H5get_libversion(byref(major), byref(minor), byref(release))
|
|
- except Exception:
|
|
- print("error: Unable to find HDF5 version")
|
|
- raise
|
|
|
|
- return int(major.value), int(minor.value), int(release.value)
|
|
+ return (1, 12, 1)
|
|
|
|
def load_function(self, func_name):
|
|
try:
|
|
@@ -277,7 +263,7 @@ class HDF5LibWrapper:
|
|
return True
|
|
|
|
def has_mpi_support(self):
|
|
- return self.has_functions("H5Pget_fapl_mpio", "H5Pset_fapl_mpio")
|
|
+ return False
|
|
|
|
def has_ros3_support(self):
|
|
- return self.has_functions("H5Pget_fapl_ros3", "H5Pset_fapl_ros3")
|
|
+ return False
|