mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-04-12 18:10:24 +08:00
Merge branch 'master' into filtername.dmh
This commit is contained in:
commit
49e86f5778
@ -1926,7 +1926,7 @@ is_enabled(USE_MMAP HAS_MMAP)
|
||||
is_enabled(JNA HAS_JNA)
|
||||
is_enabled(STATUS_RELAX_COORD_BOUND RELAX_COORD_BOUND)
|
||||
is_enabled(USE_CDF5 HAS_CDF5)
|
||||
is_enabled(ENABLE_ERANGE_FILL ENABLE_ERANGE_FILL)
|
||||
is_enabled(ENABLE_ERANGE_FILL HAS_ERANGE_FILL)
|
||||
|
||||
# Generate file from template.
|
||||
CONFIGURE_FILE("${CMAKE_CURRENT_SOURCE_DIR}/libnetcdf.settings.in"
|
||||
|
@ -1438,6 +1438,7 @@ AX_SET_META([NC_HAS_PNETCDF],[$enable_pnetcdf],[yes])
|
||||
AX_SET_META([NC_HAS_PARALLEL],[$enable_parallel],[yes])
|
||||
AX_SET_META([NC_HAS_PARALLEL4],[$enable_parallel4],[yes])
|
||||
AX_SET_META([NC_HAS_CDF5],[$enable_cdf5],[yes])
|
||||
AX_SET_META([NC_HAS_ERANGE_FILL], [$enable_erange_fill],[yes])
|
||||
|
||||
# Automake says that this is always run in top_builddir
|
||||
# and that srcdir is defined (== top_srcdir)
|
||||
|
@ -255,7 +255,7 @@ created with the ::NC_CLASSIC_MODEL flag.
|
||||
|
||||
As a rule, NC_MAX_VAR_DIMS <= NC_MAX_DIMS.
|
||||
|
||||
NOTE: The NC_MAX_DIMS, NC_MAX_ATTRS, and NC_MAX_VARS limits
|
||||
NOTE: The NC_MAX_DIMS, NC_MAX_ATTRS, and NC_MAX_VARS limits
|
||||
are *not* enforced after version 4.5.0
|
||||
*/
|
||||
/**@{*/
|
||||
@ -1829,7 +1829,7 @@ EXTERNL int ncerr;
|
||||
#define NC_VERBOSE 2 /**< For V2 API, be verbose on error. */
|
||||
|
||||
/** V2 API error handling. Default is (NC_FATAL | NC_VERBOSE). */
|
||||
EXTERNL int ncopts;
|
||||
EXTERNL int ncopts;
|
||||
|
||||
EXTERNL void
|
||||
nc_advise(const char *cdf_routine_name, int err, const char *fmt,...);
|
||||
@ -1977,4 +1977,6 @@ nc_finalize();
|
||||
#define NC_HAVE_INQ_FORMAT_EXTENDED /*!< inq_format_extended() support. */
|
||||
#endif
|
||||
|
||||
#define NC_HAVE_META_H
|
||||
|
||||
#endif /* _NETCDF_ */
|
||||
|
@ -52,6 +52,6 @@
|
||||
/or pnetcdf. */
|
||||
|
||||
#define NC_HAS_CDF5 @NC_HAS_CDF5@ /*!< CDF5 support. */
|
||||
|
||||
#define NC_HAS_ERANGE_FILL @NC_HAS_ERANGE_FILL@ /*!< ERANGE_FILL Support */
|
||||
|
||||
#endif
|
||||
|
@ -156,7 +156,7 @@ NC_parsefilterspec(const char* spec, unsigned int* idp, size_t* nparamsp, unsign
|
||||
/* convert to network byte order */
|
||||
memcpy(mem,&val64u,sizeof(mem));
|
||||
#ifdef WORDS_BIGENDIAN
|
||||
byteswap8(mem); /* convert big endian to little endian */
|
||||
NC_byteswap8(mem); /* convert big endian to little endian */
|
||||
#endif
|
||||
vector = (unsigned int*)mem;
|
||||
ulist[nparams++] = vector[0];
|
||||
|
@ -35,4 +35,4 @@ Diskless Support: @HAS_DISKLESS@
|
||||
MMap Support: @HAS_MMAP@
|
||||
JNA Support: @HAS_JNA@
|
||||
CDF5 Support: @HAS_CDF5@
|
||||
ERANGE fill Support: @ENABLE_ERANGE_FILL@
|
||||
ERANGE fill Support: @HAS_ERANGE_FILL@
|
||||
|
Loading…
x
Reference in New Issue
Block a user