mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-02-05 16:20:10 +08:00
re: github issue https://github.com/Unidata/netcdf-c/issues/1111 One of the less common use cases for the in-memory feature is apparently failing with HDF5-1.10.x. The fix is complicated and requires significant changes to libhdf5/nc4memcb.c. The current setup is detailed in the file docs/inmeminternal.dox. Additionally, it was discovered that the program nc_test/tst_inmemory.c, which is invoked by nc_test/run_inmemory.sh, actually was failing because of the above problem. But the failure is not detected since the script does not return non-zero value. Other Changes: 1. Fix nc_test_tst_inmemory to return errors correctly. 2. Make ncdap_tests/findtestserver.c and dap4_tests/findtestserver4.c be generated from ncdap_test/findtestserver.c.in. 3. Make LOG() print output to stderr instead of stdout to avoid contaminating e.g. ncdump output. 4. Modify the handling of NC_INMEMORY and NC_DISKLESS flags to properly handle that NC_DISKLESS => NC_INMEMORY. This affects a number of code pieces, especially memio.c.
40 lines
971 B
Plaintext
40 lines
971 B
Plaintext
# NetCDF C Configuration Summary
|
|
==============================
|
|
|
|
# General
|
|
-------
|
|
NetCDF Version: @PACKAGE_VERSION@
|
|
Configured On: @CONFIG_DATE@
|
|
Host System: @host_cpu@-@host_vendor@-@host_os@
|
|
Build Directory: @abs_top_builddir@
|
|
Install Prefix: @prefix@
|
|
|
|
# Compiling Options
|
|
-----------------
|
|
C Compiler: @CC_VERSION@
|
|
CFLAGS: @CFLAGS@
|
|
CPPFLAGS: @CPPFLAGS@
|
|
LDFLAGS: @LDFLAGS@
|
|
AM_CFLAGS: @AM_CFLAGS@
|
|
AM_CPPFLAGS: @AM_CPPFLAGS@
|
|
AM_LDFLAGS: @AM_LDFLAGS@
|
|
Shared Library: @enable_shared@
|
|
Static Library: @enable_static@
|
|
Extra libraries: @LIBS@
|
|
|
|
# Features
|
|
--------
|
|
NetCDF-2 API: @HAS_NC2@
|
|
HDF4 Support: @HAS_HDF4@
|
|
NetCDF-4 API: @HAS_NC4@
|
|
NC-4 Parallel Support: @HAS_PARALLEL4@
|
|
PNetCDF Support: @HAS_PNETCDF@
|
|
DAP2 Support: @HAS_DAP@
|
|
DAP4 Support: @HAS_DAP4@
|
|
Diskless Support: @HAS_DISKLESS@
|
|
MMap Support: @HAS_MMAP@
|
|
JNA Support: @HAS_JNA@
|
|
CDF5 Support: @HAS_CDF5@
|
|
ERANGE Fill Support: @HAS_ERANGE_FILL@
|
|
Relaxed Boundary Check: @RELAX_COORD_BOUND@
|