You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
set(CHUNK_CACHE_NELEMS ${DEFAULT_CHUNKS_IN_CACHE}CACHESTRING"Default maximum number of elements in cache.")
371
-
set(CHUNK_CACHE_PREEMPTION ${DEFAULT_CHUNK_CACHE_PREEMPTION}CACHESTRING"Default file chunk cache preemption policy for HDf5 files(a number between 0 and 1, inclusive.")
368
+
set(CHUNK_CACHE_PREEMPTION ${DEFAULT_CHUNK_CACHE_PREEMPTION}CACHESTRING"Default file chunk cache preemption policy for HDf5 files(a number between 0 and 1, inclusive.)")
372
369
373
370
set(NETCDF_LIB_NAME ""CACHESTRING"Default name of the netcdf library.")
374
371
set(TEMP_LARGE "."CACHESTRING"Where to put large temp files if large file tests are run.")
@@ -629,76 +626,66 @@ option(NETCDF_ENABLE_FILTER_BZ2 "Enable use of Bz2 compression library if it i
629
626
option(NETCDF_ENABLE_FILTER_BLOSC"Enable use of blosc compression library if it is available."ON)
630
627
option(NETCDF_ENABLE_FILTER_ZSTD"Enable use of Zstd compression library if it is available."ON)
631
628
632
-
# If user wants, then install selected plugins (default on)
633
-
set(NETCDF_PLUGIN_INSTALL_DIR "YES"CACHESTRING"Whether and where we should install plugins; defaults to yes")
634
-
if(NOT NETCDF_ENABLE_PLUGINS)
635
-
unset(NETCDF_PLUGIN_INSTALL_DIR CACHE)
636
-
endif()
629
+
# If user wants, then install selected plugins (default off)
Copy file name to clipboardExpand all lines: RELEASE_NOTES.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,8 @@ This file contains a high-level description of this package's evolution. Release
7
7
8
8
## 4.9.3 - TBD
9
9
10
+
* Extend the netcdf API to support programmatic changes to the plugin search path. See [Github #3034](https://github.com/Unidata/netcdf-c/pull/3034) for more information.
11
+
10
12
## Known Issue
11
13
12
14
> Parallel operation using `mpich 4.2.0` (the default on `Ubuntu 24.04`) results in 'unexpected results' when running `nc_test4/run_par_test.sh`. This can be fixed by removing `mpich` and associated libraries and development packages and installing `mpich 4.2.2` by hand, or by using `openmpi` provided via `apt`.
Copy file name to clipboardExpand all lines: cmake/dependencies.cmake
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -226,13 +226,13 @@ if(USE_HDF5)
226
226
endif(USE_HDF5)
227
227
228
228
################################
229
-
# Curl Libraryies
229
+
# Curl Libraries
230
230
# Only needed for DAP (DAP2 or DAP4)
231
-
# and NCZARR with S3 Support
231
+
# and NCZARR S3 support
232
+
# and byterange support
232
233
################################
233
234
234
-
if( (NETCDF_ENABLE_DAP AND (NETCDF_ENABLE_DAP2 OR NETCDF_ENABLE_DAP4 OR NETCDF_ENABLE_BYTERANGE_SUPPORT)) OR (NETCDF_ENABLE_NCZARR AND NETCDF_ENABLENCZARR_S3))
235
-
235
+
if( NETCDF_ENABLE_DAP2 OR NETCDF_ENABLE_DAP4 OR NETCDF_ENABLE_BYTERANGE_SUPPORT OR NETCDF_ENABLE_NCZARR_S3)
0 commit comments