Skip to content

Commit

Permalink
Update to 1.14.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mulimoen authored and magnusuMET committed Aug 8, 2024
1 parent 8e8a96c commit 9b8f1b6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions hdf5-src/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ fn main() {
"HDF5_BUILD_CPP_LIB",
"HDF5_BUILD_UTILS",
"HDF5_ENABLE_PARALLEL",
"HDF5_ENABLE_NONSTANDARD_FEATURES",
] {
cfg.define(option, "OFF");
}
Expand All @@ -30,6 +31,7 @@ fn main() {
"HDF5_ENABLE_THREADSAFE",
"ALLOW_UNSUPPORTED",
"HDF5_BUILD_HL_LIB",
"HDF5_ENABLE_NONSTANDARD_FEATURE_FLOAT16",
] {
cfg.define(option, "OFF");
}
Expand Down
2 changes: 1 addition & 1 deletion hdf5-src/ext/hdf5
Submodule hdf5 updated 1834 files
2 changes: 1 addition & 1 deletion hdf5-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -659,7 +659,7 @@ impl Config {
let mut vs: Vec<_> = (5..=21).map(|v| Version::new(1, 8, v)).collect(); // 1.8.[5-23]
vs.extend((0..=8).map(|v| Version::new(1, 10, v))); // 1.10.[0-10]
vs.extend((0..=2).map(|v| Version::new(1, 12, v))); // 1.12.[0-2]
vs.extend((0..=2).map(|v| Version::new(1, 14, v))); // 1.14.[0-2]
vs.extend((0..=4).map(|v| Version::new(1, 14, v))); // 1.14.[0-4]
for v in vs.into_iter().filter(|&v| version >= v) {
println!("cargo:rustc-cfg=feature=\"{}.{}.{}\"", v.major, v.minor, v.micro);
println!("cargo:version_{}_{}_{}=1", v.major, v.minor, v.micro);
Expand Down

0 comments on commit 9b8f1b6

Please sign in to comment.