mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
Bringing config.h as generagted by cmake in line with config.h as generated by autotools.
This commit is contained in:
parent
9c12653963
commit
209c31d3f3
117
CMakeLists.txt
117
CMakeLists.txt
@ -88,6 +88,7 @@ SET(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules/"
|
||||
# auto-configure style checks, other CMake modules.
|
||||
INCLUDE(${CMAKE_ROOT}/Modules/CheckLibraryExists.cmake)
|
||||
INCLUDE(${CMAKE_ROOT}/Modules/CheckIncludeFile.cmake)
|
||||
INCLUDE(${CMAKE_ROOT}/Modules/CheckIncludeFiles.cmake)
|
||||
INCLUDE(${CMAKE_ROOT}/Modules/CheckTypeSize.cmake)
|
||||
INCLUDE(${CMAKE_ROOT}/Modules/CheckFunctionExists.cmake)
|
||||
INCLUDE(${CMAKE_ROOT}/Modules/CheckCXXSourceCompiles.cmake)
|
||||
@ -333,24 +334,15 @@ OPTION (ENABLE_V2_API "Build netCDF Version 2." ON)
|
||||
SET(BUILD_V2 ${ENABLE_V2_API})
|
||||
IF(NOT ENABLE_V2_API)
|
||||
SET(NO_NETCDF_2 ON)
|
||||
ENDIF()
|
||||
ELSE(NOT ENABLE_V2_API)
|
||||
SET(USE_NETCDF_2 TRUE)
|
||||
ENDIF(NOT ENABLE_V2_API)
|
||||
|
||||
# Option to build utilities
|
||||
OPTION(BUILD_UTILITIES "Build ncgen, ncgen3, ncdump." ON)
|
||||
|
||||
# Option to use MMAP
|
||||
OPTION(ENABLE_MMAP "Use MMAP." OFF)
|
||||
IF(ENABLE_MMAP)
|
||||
CHECK_FUNCTION_EXISTS(mremap HAVE_MREMAP)
|
||||
IF(NOT HAVE_MREMAP)
|
||||
MESSAGE(WARNING "mremap not found: disabling MMAP support.")
|
||||
SET(ENABLE_MMAP OFF)
|
||||
ELSE()
|
||||
SET(HAVE_MMAP ON)
|
||||
SET(BUILD_MMAP ON)
|
||||
SET(USE_MMAP ON)
|
||||
ENDIF()
|
||||
ENDIF()
|
||||
OPTION(ENABLE_MMAP "Use MMAP." ON)
|
||||
|
||||
# Option to use examples.
|
||||
OPTION(ENABLE_EXAMPLES "Build Examples" ON)
|
||||
@ -653,6 +645,7 @@ IF(USE_HDF5 OR ENABLE_NETCDF_4)
|
||||
ENDIF()
|
||||
|
||||
IF(HDF5_IS_PARALLEL_MPIO)
|
||||
SET(HAVE_H5PGET_FAPL_MPIO TRUE)
|
||||
SET(USE_PARALLEL_MPIO ON)
|
||||
ENDIF()
|
||||
|
||||
@ -667,6 +660,9 @@ IF(USE_HDF5 OR ENABLE_NETCDF_4)
|
||||
SET(HDF5_C_LIBRARY hdf5)
|
||||
ENDIF(NOT MSVC)
|
||||
|
||||
# Make sure the user has built the library with zlib support.
|
||||
CHECK_LIBRARY_EXISTS(${HDF5_C_LIBRARY} H5Pset_deflate "" HAVE_H5PSET_DEFLATE)
|
||||
|
||||
#Check to see if H5Z_SZIP exists in HDF5_Libraries. If so, we must use szip.
|
||||
CHECK_LIBRARY_EXISTS(${HDF5_C_LIBRARY} H5P_SZIP "" USE_SZIP)
|
||||
IF(USE_SZIP)
|
||||
@ -680,8 +676,15 @@ IF(USE_HDF5 OR ENABLE_NETCDF_4)
|
||||
ENDIF()
|
||||
|
||||
CHECK_LIBRARY_EXISTS(${HDF5_C_LIBRARY} H5free_memory "" HDF5_HAS_H5FREE)
|
||||
IF(HDF5_HAS_H5FREE)
|
||||
SET(HAVE_H5FREE_MEMORY TRUE)
|
||||
ENDIF(HDF5_HAS_H5FREE)
|
||||
CHECK_LIBRARY_EXISTS(${HDF5_C_LIBRARY} H5Pset_libver_bounds "" HDF5_HAS_LIBVER_BOUNDS)
|
||||
|
||||
IF(HDF5_HAS_LIBVER_BOUNDS)
|
||||
SET(HAVE_H5PSET_LIBVER_BOUNDS TRUE)
|
||||
ENDIF(HDF5_HAS_LIBVER_BOUNDS)
|
||||
|
||||
IF(HDF5_PARALLEL)
|
||||
SET(HDF5_CC h5pcc)
|
||||
ELSE()
|
||||
@ -719,6 +722,14 @@ IF(USE_HDF5 OR ENABLE_NETCDF_4)
|
||||
SET(USE_ZLIB ON)
|
||||
INCLUDE_DIRECTORIES(${ZLIB_INCLUDE_DIRS})
|
||||
|
||||
FIND_PATH(HAVE_HDF5_H hdf5.h)
|
||||
IF(NOT HAVE_HDF5_H)
|
||||
MESSAGE(FATAL_ERROR "Compiling a test with hdf5 failed. Either hdf5.h cannot be found, or the log messages should be checked for another reason.")
|
||||
ELSE(NOT HAVE_HDF5_H)
|
||||
INCLUDE_DIRECTORIES(${HAVE_HDF5_H})
|
||||
ENDIF(NOT HAVE_HDF5_H)
|
||||
|
||||
|
||||
ENDIF(USE_HDF5 OR ENABLE_NETCDF_4)
|
||||
|
||||
|
||||
@ -1115,7 +1126,7 @@ CHECK_INCLUDE_FILE("errno.h" HAVE_ERRNO_H)
|
||||
CHECK_INCLUDE_FILE("fcntl.h" HAVE_FCNTL_H)
|
||||
CHECK_INCLUDE_FILE("getopt.h" HAVE_GETOPT_H)
|
||||
CHECK_INCLUDE_FILE("stdbool.h" HAVE_STDBOOL_H)
|
||||
CHECK_INCLUDE_FILE("locale.h" HAVE_LOCAL_H)
|
||||
CHECK_INCLUDE_FILE("locale.h" HAVE_LOCALE_H)
|
||||
CHECK_INCLUDE_FILE("stdint.h" HAVE_STDINT_H)
|
||||
CHECK_INCLUDE_FILE("stdio.h" HAVE_STDIO_H)
|
||||
CHECK_INCLUDE_FILE("stdlib.h" HAVE_STDLIB_H)
|
||||
@ -1129,6 +1140,7 @@ CHECK_INCLUDE_FILE("sys/stat.h" HAVE_SYS_STAT_H)
|
||||
CHECK_INCLUDE_FILE("sys/time.h" HAVE_SYS_TIME_H)
|
||||
CHECK_INCLUDE_FILE("sys/types.h" HAVE_SYS_TYPES_H)
|
||||
CHECK_INCLUDE_FILE("sys/wait.h" HAVE_SYS_WAIT_H)
|
||||
CHECK_INCLUDE_FILE("sys/mman.h" HAVE_SYS_MMAN_H)
|
||||
CHECK_INCLUDE_FILE("sys/resource.h" HAVE_SYS_RESOURCE_H)
|
||||
CHECK_INCLUDE_FILE("fcntl.h" HAVE_FCNTL_H)
|
||||
CHECK_INCLUDE_FILE("inttypes.h" HAVE_INTTYPES_H)
|
||||
@ -1136,6 +1148,30 @@ CHECK_INCLUDE_FILE("pstdint.h" HAVE_PSTDINT_H)
|
||||
CHECK_INCLUDE_FILE("endian.h" HAVE_ENDIAN_H)
|
||||
CHECK_INCLUDE_FILE("BaseTsd.h" HAVE_BASETSD_H)
|
||||
CHECK_INCLUDE_FILE("stddef.h" HAVE_STDDEF_H)
|
||||
CHECK_INCLUDE_FILE("memory.h" HAVE_MEMORY_H)
|
||||
CHECK_INCLUDE_FILE("string.h" HAVE_STRING_H)
|
||||
|
||||
CHECK_INCLUDE_FILES("time.h;sys/time.h" TIME_WITH_SYS_TIME)
|
||||
|
||||
IF(NOT HAVE_STDLIB_H)
|
||||
SET(NO_STDLIB_H TRUE)
|
||||
ENDIF(NOT HAVE_STDLIB_H)
|
||||
|
||||
IF(NOT HAVE_SYS_TYPES_H)
|
||||
SET(NO_SYS_TYPES_H TRUE)
|
||||
ENDIF(NOT HAVE_SYS_TYPES_H)
|
||||
|
||||
|
||||
# Symbol Exists
|
||||
CHECK_SYMBOL_EXISTS(isfinite "math.h" HAVE_DECL_ISFINITE)
|
||||
CHECK_SYMBOL_EXISTS(isnan "math.h" HAVE_DECL_ISNAN)
|
||||
CHECK_SYMBOL_EXISTS(isinf "math.h" HAVE_DECL_ISINF)
|
||||
CHECK_SYMBOL_EXISTS(signbit "math.h" HAVE_DECL_SIGNBIT)
|
||||
CHECK_SYMBOL_EXISTS(st_blksize "sys/stat.h" HAVE_STRUCT_STAT_ST_BLKSIZE)
|
||||
CHECK_SYMBOL_EXISTS(alloca "alloca.h" HAVE_ALLOCA)
|
||||
|
||||
# For historic purposes...
|
||||
SET(HAVE_ST_BLKSIZE ${HAVE_STRUCT_STAT_ST_BLKSIZE})
|
||||
|
||||
# Type checks
|
||||
CHECK_TYPE_SIZE("void*" SIZEOF_VOIDSTAR)
|
||||
@ -1143,13 +1179,46 @@ CHECK_TYPE_SIZE("char" SIZEOF_CHAR)
|
||||
CHECK_TYPE_SIZE("double" SIZEOF_DOUBLE)
|
||||
CHECK_TYPE_SIZE("float" SIZEOF_FLOAT)
|
||||
CHECK_TYPE_SIZE("int" SIZEOF_INT)
|
||||
CHECK_TYPE_SIZE("uint" SIZEOF_UINT)
|
||||
IF(SIZEOF_UINT)
|
||||
SET(HAVE_UINT TRUE)
|
||||
ENDIF(SIZEOF_UINT)
|
||||
|
||||
CHECK_TYPE_SIZE("long" SIZEOF_LONG)
|
||||
CHECK_TYPE_SIZE("long long" SIZEOF_LONG_LONG)
|
||||
IF(SIZEOF_LONG_LONG)
|
||||
SET(HAVE_LONG_LONG_INT TRUE)
|
||||
ENDIF(SIZEOF_LONG_LONG)
|
||||
|
||||
CHECK_TYPE_SIZE("unsigned long long" SIZEOF_UNSIGNED_LONG_LONG)
|
||||
IF(SIZEOF_UNSIGNED_LONG_LONG)
|
||||
SET(HAVE_UNSIGNED_LONG_LONG_INT TRUE)
|
||||
ENDIF(SIZEOF_UNSIGNED_LONG_LONG)
|
||||
|
||||
CHECK_TYPE_SIZE("off_t" SIZEOF_OFF_T)
|
||||
CHECK_TYPE_SIZE("off64_t" SIZEOF_OFF64_T)
|
||||
CHECK_TYPE_SIZE("short" SIZEOF_SHORT)
|
||||
CHECK_TYPE_SIZE("ushort" SIZEOF_USHORT)
|
||||
IF(SIZEOF_USHORT)
|
||||
SET(HAVE_USHORT TRUE)
|
||||
ENDIF(SIZEOF_USHORT)
|
||||
|
||||
CHECK_TYPE_SIZE("_Bool" SIZEOF__BOOL)
|
||||
IF(SIZEOF__BOOL)
|
||||
SET(HAVE__BOOL TRUE)
|
||||
ENDIF(SIZEOF__BOOL)
|
||||
|
||||
CHECK_TYPE_SIZE("size_t" SIZEOF_SIZE_T)
|
||||
IF(SIZEOF_SIZE_T)
|
||||
SET(HAVE_SIZE_T TRUE)
|
||||
ENDIF(SIZEOF_SIZE_T)
|
||||
|
||||
CHECK_TYPE_SIZE("ssize_t" SIZEOF_SSIZE_T)
|
||||
CHECK_TYPE_SIZE("ptrdiff_t" SIZEOF_PTRDIFF_T)
|
||||
IF(SIZEOF_PTRDIFF_T)
|
||||
SET(HAVE_PTRDIFF_T TRUE)
|
||||
ENDIF(SIZEOF_PTRDIFF_T)
|
||||
|
||||
# __int64 is used on Windows for large file support.
|
||||
CHECK_TYPE_SIZE("__int64" SIZEOF___INT_64)
|
||||
CHECK_TYPE_SIZE("uchar" SIZEOF_UCHAR)
|
||||
@ -1186,20 +1255,36 @@ CHECK_FUNCTION_EXISTS(strndup HAVE_STRNDUP)
|
||||
CHECK_FUNCTION_EXISTS(strcasecmp HAVE_STRCASECMP)
|
||||
CHECK_FUNCTION_EXISTS(strtod HAVE_STRTOD)
|
||||
CHECK_FUNCTION_EXISTS(strtoll HAVE_STRTOLL)
|
||||
CHECK_FUNCTION_EXISTS(strtoull HAVE_STROULL)
|
||||
CHECK_FUNCTION_EXISTS(strtoull HAVE_STRTOULL)
|
||||
CHECK_FUNCTION_EXISTS(strstr HAVE_STRSTR)
|
||||
CHECK_FUNCTION_EXISTS(mkstemp HAVE_MKSTEMP)
|
||||
CHECK_FUNCTION_EXISTS(rand HAVE_RAND)
|
||||
CHECK_FUNCTION_EXISTS(random HAVE_RANDOM)
|
||||
CHECK_FUNCTION_EXISTS(gettimeofday HAVE_GETTIMEOFDAY)
|
||||
CHECK_FUNCTION_EXISTS(fsync HAVE_FSYNC)
|
||||
CHECK_FUNCTION_EXISTS(MPI_Comm_f2C HAVE_MPI_COMM_F2C)
|
||||
CHECK_FUNCTION_EXISTS(MPI_Comm_f2c HAVE_MPI_COMM_F2C)
|
||||
CHECK_FUNCTION_EXISTS(memmove HAVE_MEMMOVE)
|
||||
CHECK_FUNCTION_EXISTS(memcmp HAVE_MEMCMP)
|
||||
CHECK_FUNCTION_EXISTS(getpagesize HAVE_GETPAGESIZE)
|
||||
CHECK_FUNCTION_EXISTS(sysconf HAVE_SYSCONF)
|
||||
CHECK_FUNCTION_EXISTS(getrlimit HAVE_GETRLIMIT)
|
||||
CHECK_FUNCTION_EXISTS(_filelengthi64 HAVE_FILE_LENGTH_I64)
|
||||
CHECK_FUNCTION_EXISTS(mmap HAVE_MMAP)
|
||||
CHECK_FUNCTION_EXISTS(mremap HAVE_MREMAP)
|
||||
|
||||
IF(ENABLE_MMAP)
|
||||
IF(NOT HAVE_MREMAP)
|
||||
MESSAGE(WARNING "mremap not found: disabling MMAP support.")
|
||||
SET(ENABLE_MMAP OFF)
|
||||
ELSE(NOT HAVE_MREMAP)
|
||||
SET(HAVE_MMAP ON)
|
||||
SET(BUILD_MMAP ON)
|
||||
SET(USE_MMAP ON)
|
||||
ENDIF(NOT HAVE_MREMAP)
|
||||
ENDIF(ENABLE_MMAP)
|
||||
|
||||
CHECK_FUNCTION_EXISTS(vprintf HAVE_VPRINTF)
|
||||
#CHECK_FUNCTION_EXISTS(alloca HAVE_ALLOCA)
|
||||
#####
|
||||
# End system inspection checks.
|
||||
#####
|
||||
|
@ -1,10 +1,10 @@
|
||||
/* config.h.in. Generated from configure.ac by autoheader. */
|
||||
|
||||
/* Define if building universal (internal helper macro) */
|
||||
#cmakedefine AC_APPLE_UNIVERSAL_BUILD
|
||||
#cmakedefine AC_APPLE_UNIVERSAL_BUILD 1
|
||||
|
||||
/* If true, will attempt to download and build netcdf-fortran. */
|
||||
#cmakedefine BUILD_FORTRAN
|
||||
#cmakedefine BUILD_FORTRAN 1
|
||||
|
||||
/* default file chunk cache nelems. */
|
||||
#cmakedefine CHUNK_CACHE_NELEMS ${CHUNK_CACHE_NELEMS}
|
||||
@ -120,326 +120,323 @@
|
||||
#cmakedefine HAVE_GETRLIMIT 1
|
||||
|
||||
/* Define to 1 if you have the `gettimeofday' function. */
|
||||
#cmakedefine HAVE_GETTIMEOFDAY
|
||||
#cmakedefine HAVE_GETTIMEOFDAY 1
|
||||
|
||||
/* Define to 1 if you have the `H5free_memory' function. */
|
||||
#cmakedefine HAVE_H5FREE_MEMORY
|
||||
#cmakedefine HAVE_H5FREE_MEMORY 1
|
||||
|
||||
/* Define to 1 if you have the `H5Pget_fapl_mpio' function. */
|
||||
#cmakedefine HAVE_H5PGET_FAPL_MPIO
|
||||
#cmakedefine HAVE_H5PGET_FAPL_MPIO 1
|
||||
|
||||
/* Define to 1 if you have the `H5Pget_fapl_mpiposix' function. */
|
||||
#cmakedefine HAVE_H5PGET_FAPL_MPIPOSIX
|
||||
#cmakedefine HAVE_H5PGET_FAPL_MPIPOSIX 1
|
||||
|
||||
/* Define to 1 if you have the `H5Pset_deflate' function. */
|
||||
#cmakedefine HAVE_H5PSET_DEFLATE
|
||||
#cmakedefine HAVE_H5PSET_DEFLATE 1
|
||||
|
||||
/* if true, netcdf4 file properties will be set using H5Pset_libver_bounds */
|
||||
#cmakedefine HDF5_HAS_LIBVER_BOUNDS 1
|
||||
|
||||
/* Define to 1 if you have the `H5Z_SZIP' function. */
|
||||
#cmakedefine HAVE_H5Z_SZIP
|
||||
#cmakedefine HAVE_H5Z_SZIP 1
|
||||
|
||||
/* Define to 1 if you have the <hdf5.h> header file. */
|
||||
#cmakedefine HAVE_HDF5_H
|
||||
#cmakedefine HAVE_HDF5_H 1
|
||||
|
||||
/* Define to 1 if the system has the type `int64'. */
|
||||
#cmakedefine HAVE_INT64
|
||||
#cmakedefine HAVE_INT64 1
|
||||
|
||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
||||
#cmakedefine HAVE_INTTYPES_H
|
||||
#cmakedefine HAVE_INTTYPES_H 1
|
||||
|
||||
/* Define to 1 if you have the `df' library (-ldf). */
|
||||
#cmakedefine HAVE_LIBDF
|
||||
#cmakedefine HAVE_LIBDF 1
|
||||
|
||||
/* Define to 1 if you have the `dl' library (-ldl). */
|
||||
#cmakedefine HAVE_LIBDL
|
||||
#cmakedefine HAVE_LIBDL 1
|
||||
|
||||
/* Define to 1 if you have the `jpeg' library (-ljpeg). */
|
||||
#cmakedefine HAVE_LIBJPEG
|
||||
#cmakedefine HAVE_LIBJPEG 1
|
||||
|
||||
/* Define to 1 if you have the `m' library (-lm). */
|
||||
#cmakedefine HAVE_LIBM
|
||||
#cmakedefine HAVE_LIBM 1
|
||||
|
||||
/* Define to 1 if you have the `mfhdf' library (-lmfhdf). */
|
||||
#cmakedefine HAVE_LIBMFHDF
|
||||
#cmakedefine HAVE_LIBMFHDF 1
|
||||
|
||||
/* Define to 1 if you have the `pnetcdf' library (-lpnetcdf). */
|
||||
#cmakedefine HAVE_LIBPNETCDF
|
||||
#cmakedefine HAVE_LIBPNETCDF 1
|
||||
|
||||
/* Define to 1 if you have the <locale.h> header file. */
|
||||
#cmakedefine HAVE_LOCALE_H
|
||||
#cmakedefine HAVE_LOCALE_H 1
|
||||
|
||||
/* Define to 1 if the system has the type `longlong'. */
|
||||
#cmakedefine HAVE_LONGLONG
|
||||
#cmakedefine HAVE_LONGLONG 1
|
||||
|
||||
/* Define to 1 if the system has the type 'long long int'. */
|
||||
#cmakedefine HAVE_LONG_LONG_INT
|
||||
#cmakedefine HAVE_LONG_LONG_INT 1
|
||||
|
||||
/* Define to 1 if you have the <malloc.h> header file. */
|
||||
#cmakedefine HAVE_MALLOC_H
|
||||
#cmakedefine HAVE_MALLOC_H 1
|
||||
|
||||
/* Define to 1 if you have the `memcmp' function. */
|
||||
#cmakedefine HAVE_MEMCMP
|
||||
#cmakedefine HAVE_MEMCMP 1
|
||||
|
||||
/* Define to 1 if you have the `memmove' function. */
|
||||
#cmakedefine HAVE_MEMMOVE
|
||||
#cmakedefine HAVE_MEMMOVE 1
|
||||
|
||||
/* Define to 1 if you have the <memory.h> header file. */
|
||||
#cmakedefine HAVE_MEMORY_H
|
||||
#cmakedefine HAVE_MEMORY_H 1
|
||||
|
||||
/* Define to 1 if you have the <mfhdf.h> header file. */
|
||||
#cmakedefine HAVE_MFHDF_H
|
||||
#cmakedefine HAVE_MFHDF_H 1
|
||||
|
||||
/* Define to 1 if you have the `mkstemp' function. */
|
||||
#cmakedefine HAVE_MKSTEMP
|
||||
#cmakedefine HAVE_MKSTEMP 1
|
||||
|
||||
/* Define to 1 if you have a working `mmap' system call. */
|
||||
#cmakedefine HAVE_MMAP
|
||||
#cmakedefine HAVE_MMAP 1
|
||||
|
||||
/* Define to 1 if you have the `MPI_Comm_f2c' function. */
|
||||
#cmakedefine HAVE_MPI_COMM_F2C
|
||||
#cmakedefine HAVE_MPI_COMM_F2C 1
|
||||
|
||||
/* Define to 1 if you have the `mremap' function. */
|
||||
#cmakedefine HAVE_MREMAP
|
||||
#cmakedefine HAVE_MREMAP 1
|
||||
|
||||
/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
|
||||
#cmakedefine HAVE_NDIR_H
|
||||
#cmakedefine HAVE_NDIR_H 1
|
||||
|
||||
/* Define to 1 if the system has the type `ptrdiff_t'. */
|
||||
#cmakedefine HAVE_PTRDIFF_T
|
||||
#cmakedefine HAVE_PTRDIFF_T 1
|
||||
|
||||
/* Define to 1 if you have the `rand' function. */
|
||||
#cmakedefine HAVE_RAND
|
||||
#cmakedefine HAVE_RAND 1
|
||||
|
||||
/* Define to 1 if you have the `random' function. */
|
||||
#cmakedefine HAVE_RANDOM
|
||||
#cmakedefine HAVE_RANDOM 1
|
||||
|
||||
/* Define to 1 if the system has the type `size_t'. */
|
||||
#cmakedefine HAVE_SIZE_T
|
||||
#cmakedefine HAVE_SIZE_T 1
|
||||
|
||||
/* Define to 1 if you have the `snprintf' function. */
|
||||
#cmakedefine HAVE_SNPRINTF
|
||||
#cmakedefine HAVE_SNPRINTF 1
|
||||
|
||||
/* Define to 1 if the system has the type `ssize_t'. */
|
||||
#cmakedefine HAVE_SSIZE_T
|
||||
#cmakedefine HAVE_SSIZE_T 1
|
||||
|
||||
/* Define to 1 if you have the <stdarg.h> header file. */
|
||||
#cmakedefine HAVE_STDARG_H
|
||||
#cmakedefine HAVE_STDARG_H 1
|
||||
|
||||
/* Define to 1 if stdbool.h conforms to C99. */
|
||||
#cmakedefine HAVE_STDBOOL_H
|
||||
#cmakedefine HAVE_STDBOOL_H 1
|
||||
|
||||
/* Define to 1 if you have the <stdint.h> header file. */
|
||||
#cmakedefine HAVE_STDINT_H
|
||||
#cmakedefine HAVE_STDINT_H 1
|
||||
|
||||
/* Define to 1 if you have the <stdio.h> header file. */
|
||||
#cmakedefine HAVE_STDIO_H
|
||||
#cmakedefine HAVE_STDIO_H 1
|
||||
|
||||
/* Define to 1 if you have the <stdlib.h> header file. */
|
||||
#cmakedefine HAVE_STDLIB_H
|
||||
#cmakedefine HAVE_STDLIB_H 1
|
||||
|
||||
/* Define to 1 if you have the `strcasecmp' function. */
|
||||
#cmakedefine HAVE_STRCASECMP
|
||||
#cmakedefine HAVE_STRCASECMP 1
|
||||
|
||||
/* Define to 1 if you have the `strcat' function. */
|
||||
#cmakedefine HAVE_STRCAT
|
||||
#cmakedefine HAVE_STRCAT 1
|
||||
|
||||
/* Define to 1 if you have the `strchr' function. */
|
||||
#cmakedefine HAVE_STRCHR
|
||||
#cmakedefine HAVE_STRCHR 1
|
||||
|
||||
/* Define to 1 if you have the `strcpy' function. */
|
||||
#cmakedefine HAVE_STRCPY
|
||||
#cmakedefine HAVE_STRCPY 1
|
||||
|
||||
/* Define to 1 if you have the `strdup' function. */
|
||||
#cmakedefine HAVE_STRDUP
|
||||
#cmakedefine HAVE_STRDUP 1
|
||||
|
||||
/* Define to 1 if you have the `strerror' function. */
|
||||
#cmakedefine HAVE_STRERROR
|
||||
#cmakedefine HAVE_STRERROR 1
|
||||
|
||||
/* Define to 1 if you have the <strings.h> header file. */
|
||||
#cmakedefine HAVE_STRINGS_H
|
||||
#cmakedefine HAVE_STRINGS_H 1
|
||||
|
||||
/* Define to 1 if you have the <string.h> header file. */
|
||||
#cmakedefine HAVE_STRING_H
|
||||
#cmakedefine HAVE_STRING_H 1
|
||||
|
||||
/* Define to 1 if you have the `strlcat' function. */
|
||||
#cmakedefine HAVE_STRLCAT
|
||||
#cmakedefine HAVE_STRLCAT 1
|
||||
|
||||
/* Define to 1 if you have the `strrchr' function. */
|
||||
#cmakedefine HAVE_STRRCHR
|
||||
#cmakedefine HAVE_STRRCHR 1
|
||||
|
||||
/* Define to 1 if you have the `strstr' function. */
|
||||
#cmakedefine HAVE_STRSTR
|
||||
#cmakedefine HAVE_STRSTR 1
|
||||
|
||||
/* Define to 1 if you have the `strtod' function. */
|
||||
#cmakedefine HAVE_STRTOD
|
||||
#cmakedefine HAVE_STRTOD 1
|
||||
|
||||
/* Define to 1 if you have the `strtoll' function. */
|
||||
#cmakedefine HAVE_STRTOLL
|
||||
#cmakedefine HAVE_STRTOLL 1
|
||||
|
||||
/* Define to 1 if you have the `strtoull' function. */
|
||||
#cmakedefine HAVE_STRTOULL
|
||||
#cmakedefine HAVE_STRTOULL 1
|
||||
|
||||
/* Define to 1 if `st_blksize' is a member of `struct stat'. */
|
||||
#cmakedefine HAVE_STRUCT_STAT_ST_BLKSIZE
|
||||
#cmakedefine HAVE_STRUCT_STAT_ST_BLKSIZE 1
|
||||
|
||||
/* Define to 1 if your `struct stat' has `st_blksize'. Deprecated, use
|
||||
`HAVE_STRUCT_STAT_ST_BLKSIZE' instead. */
|
||||
#cmakedefine HAVE_ST_BLKSIZE
|
||||
#cmakedefine HAVE_ST_BLKSIZE 1
|
||||
|
||||
/* Define to 1 if you have the `sysconf' function. */
|
||||
#cmakedefine HAVE_SYSCONF
|
||||
#cmakedefine HAVE_SYSCONF 1
|
||||
|
||||
/* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'.
|
||||
*/
|
||||
#cmakedefine HAVE_SYS_DIR_H
|
||||
#cmakedefine HAVE_SYS_DIR_H 1
|
||||
|
||||
/* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR'.
|
||||
*/
|
||||
#cmakedefine HAVE_SYS_NDIR_H
|
||||
#cmakedefine HAVE_SYS_NDIR_H 1
|
||||
|
||||
/* Define to 1 if you have the <sys/param.h> header file. */
|
||||
#cmakedefine HAVE_SYS_PARAM_H
|
||||
#cmakedefine HAVE_SYS_PARAM_H 1
|
||||
|
||||
/* Define to 1 if you have the <sys/resource.h> header file. */
|
||||
#cmakedefine HAVE_SYS_RESOURCE_H
|
||||
#cmakedefine HAVE_SYS_RESOURCE_H 1
|
||||
|
||||
/* Define to 1 if you have the <sys/stat.h> header file. */
|
||||
#cmakedefine HAVE_SYS_STAT_H
|
||||
#cmakedefine HAVE_SYS_STAT_H 1
|
||||
|
||||
/* Define to 1 if you have the <sys/time.h> header file. */
|
||||
#cmakedefine HAVE_SYS_TIME_H
|
||||
#cmakedefine HAVE_SYS_TIME_H 1
|
||||
|
||||
/* Define to 1 if you have the <sys/types.h> header file. */
|
||||
#cmakedefine HAVE_SYS_TYPES_H
|
||||
#cmakedefine HAVE_SYS_TYPES_H 1
|
||||
|
||||
/* Define to 1 if you have <sys/wait.h> that is POSIX.1 compatible. */
|
||||
#cmakedefine HAVE_SYS_WAIT_H
|
||||
#cmakedefine HAVE_SYS_WAIT_H 1
|
||||
|
||||
/* Define to 1 if the system has the type `uchar'. */
|
||||
#cmakedefine HAVE_UCHAR
|
||||
#cmakedefine HAVE_UCHAR 1
|
||||
|
||||
/* Define to 1 if the system has the type `uint'. */
|
||||
#cmakedefine HAVE_UINT
|
||||
#cmakedefine HAVE_UINT 1
|
||||
|
||||
/* Define to 1 if the system has the type `uint64'. */
|
||||
#cmakedefine HAVE_UINT64
|
||||
#cmakedefine HAVE_UINT64 1
|
||||
|
||||
/* Define to 1 if you have the <unistd.h> header file. */
|
||||
#cmakedefine HAVE_UNISTD_H
|
||||
#cmakedefine HAVE_UNISTD_H 1
|
||||
|
||||
/* Define to 1 if the system has the type 'unsigned long long int'. */
|
||||
#cmakedefine HAVE_UNSIGNED_LONG_LONG_INT
|
||||
#cmakedefine HAVE_UNSIGNED_LONG_LONG_INT 1
|
||||
|
||||
/* Define to 1 if the system has the type `ushort'. */
|
||||
#cmakedefine HAVE_USHORT
|
||||
#cmakedefine HAVE_USHORT 1
|
||||
|
||||
/* Define to 1 if you have the `vprintf' function. */
|
||||
#cmakedefine HAVE_VPRINTF
|
||||
#cmakedefine HAVE_VPRINTF 1
|
||||
|
||||
/* Define to 1 if the system has the type `_Bool'. */
|
||||
#cmakedefine HAVE__BOOL
|
||||
#cmakedefine HAVE__BOOL 1
|
||||
|
||||
/* if true, H5free_memory() will be used to free hdf5-allocated memory in
|
||||
nc4file. */
|
||||
#cmakedefine HDF5_HAS_H5FREE
|
||||
|
||||
/* if true, netcdf4 file properties will be set using H5Pset_libver_bounds */
|
||||
#cmakedefine HDF5_HAS_LIBVER_BOUNDS
|
||||
#cmakedefine HDF5_HAS_H5FREE 1
|
||||
|
||||
/* if true, hdf5 has parallelism enabled */
|
||||
#cmakedefine HDF5_PARALLEL
|
||||
#cmakedefine HDF5_PARALLEL 1
|
||||
|
||||
/* if true, include JNA bug fix */
|
||||
#cmakedefine JNA
|
||||
#cmakedefine JNA 1
|
||||
|
||||
/* do large file tests */
|
||||
#cmakedefine LARGE_FILE_TESTS
|
||||
#cmakedefine LARGE_FILE_TESTS 1
|
||||
|
||||
/* If true, turn on logging. */
|
||||
#cmakedefine LOGGING
|
||||
|
||||
/* Define to the sub-directory where libtool stores uninstalled libraries. */
|
||||
#cmakedefine LT_OBJDIR
|
||||
#cmakedefine LOGGING 1
|
||||
|
||||
/* max size of the default per-var chunk cache. */
|
||||
#cmakedefine MAX_DEFAULT_CACHE_SIZE
|
||||
#cmakedefine MAX_DEFAULT_CACHE_SIZE ${MAX_DEFAULT_CACHE_SIZE}
|
||||
|
||||
/* min blocksize for posixio. */
|
||||
#cmakedefine NCIO_MINBLOCKSIZE
|
||||
#cmakedefine NCIO_MINBLOCKSIZE ${NCIO_MINBLOCKSIZE}
|
||||
|
||||
/* no IEEE float on this platform */
|
||||
#cmakedefine NO_IEEE_FLOAT
|
||||
#cmakedefine NO_IEEE_FLOAT 1
|
||||
|
||||
/* do not build the netCDF version 2 API */
|
||||
#cmakedefine NO_NETCDF_2
|
||||
#cmakedefine NO_NETCDF_2 1
|
||||
|
||||
/* no stdlib.h */
|
||||
#cmakedefine NO_STDLIB_H
|
||||
#cmakedefine NO_STDLIB_H 1
|
||||
|
||||
/* no sys_types.h */
|
||||
#cmakedefine NO_SYS_TYPES_H
|
||||
#cmakedefine NO_SYS_TYPES_H 1
|
||||
|
||||
/* Name of package */
|
||||
#cmakedefine PACKAGE
|
||||
#define PACKAGE "netcdf"
|
||||
|
||||
/* Define to the address where bug reports for this package should be sent. */
|
||||
#cmakedefine PACKAGE_BUGREPORT
|
||||
#define PACKAGE_BUGREPORT "support-netcdf@unidata.ucar.edu"
|
||||
|
||||
/* Define to the full name of this package. */
|
||||
#cmakedefine PACKAGE_NAME
|
||||
#define PACKAGE_NAME "netCDF"
|
||||
|
||||
/* Define to the full name and version of this package. */
|
||||
#cmakedefine PACKAGE_STRING
|
||||
#define PACKAGE_STRING "netCDF ${netCDF_VERSION}"
|
||||
|
||||
/* Define to the one symbol short name of this package. */
|
||||
#cmakedefine PACKAGE_TARNAME
|
||||
#define PACKAGE_TARNAME "netcdf"
|
||||
|
||||
/* Define to the home page for this package. */
|
||||
#cmakedefine PACKAGE_URL
|
||||
#define PACKAGE_URL ""
|
||||
|
||||
/* Define to the version of this package. */
|
||||
#cmakedefine PACKAGE_VERSION
|
||||
#cmakedefine PACKAGE_VERSION "${netCDF_VERSION}"
|
||||
|
||||
/* The size of `double', as computed by sizeof. */
|
||||
#cmakedefine SIZEOF_DOUBLE
|
||||
#cmakedefine SIZEOF_DOUBLE ${SIZEOF_DOUBLE}
|
||||
|
||||
/* The size of `float', as computed by sizeof. */
|
||||
#cmakedefine SIZEOF_FLOAT
|
||||
#cmakedefine SIZEOF_FLOAT ${SIZEOF_FLOAT}
|
||||
|
||||
/* The size of `int', as computed by sizeof. */
|
||||
#cmakedefine SIZEOF_INT
|
||||
#cmakedefine SIZEOF_INT ${SIZEOF_INT}
|
||||
|
||||
/* The size of `long', as computed by sizeof. */
|
||||
#cmakedefine SIZEOF_LONG
|
||||
#cmakedefine SIZEOF_LONG ${SIZEOF_LONG}
|
||||
|
||||
/* The size of `long long', as computed by sizeof. */
|
||||
#cmakedefine SIZEOF_LONG_LONG
|
||||
#cmakedefine SIZEOF_LONG_LONG ${SIZEOF_LONG_LONG}
|
||||
|
||||
/* The size of `off_t', as computed by sizeof. */
|
||||
#cmakedefine SIZEOF_OFF_T
|
||||
#cmakedefine SIZEOF_OFF_T ${SIZEOF_OFF_T}
|
||||
|
||||
/* The size of `ptrdiff_t', as computed by sizeof. */
|
||||
#cmakedefine SIZEOF_PTRDIFF_T
|
||||
#cmakedefine SIZEOF_PTRDIFF_T ${SIZEOF_PTRDIFF_T}
|
||||
|
||||
/* The size of `short', as computed by sizeof. */
|
||||
#cmakedefine SIZEOF_SHORT
|
||||
#cmakedefine SIZEOF_SHORT ${SIZEOF_SHORT}
|
||||
|
||||
/* The size of `size_t', as computed by sizeof. */
|
||||
#cmakedefine SIZEOF_SIZE_T
|
||||
#cmakedefine SIZEOF_SIZE_T ${SIZEOF_SIZE_T}
|
||||
|
||||
/* The size of `uint', as computed by sizeof. */
|
||||
#cmakedefine SIZEOF_UINT
|
||||
#cmakedefine SIZEOF_UINT ${SIZEOF_UINT}
|
||||
|
||||
/* The size of `unsigned int', as computed by sizeof. */
|
||||
#cmakedefine SIZEOF_UNSIGNED_INT
|
||||
#cmakedefine SIZEOF_UNSIGNED_INT ${SIZEOF_UNSIGNED_INT}
|
||||
|
||||
/* The size of `unsigned long long', as computed by sizeof. */
|
||||
#cmakedefine SIZEOF_UNSIGNED_LONG_LONG
|
||||
#cmakedefine SIZEOF_UNSIGNED_LONG_LONG ${SIZEOF_UNSIGNED_LONG_LONG}
|
||||
|
||||
/* The size of `unsigned short int', as computed by sizeof. */
|
||||
#cmakedefine SIZEOF_UNSIGNED_SHORT_INT
|
||||
#cmakedefine SIZEOF_UNSIGNED_SHORT_INT ${SIZEOF_UNSIGNED_SHORT_INT}
|
||||
|
||||
/* The size of `ushort', as computed by sizeof. */
|
||||
#cmakedefine SIZEOF_USHORT
|
||||
#cmakedefine SIZEOF_USHORT ${SIZEOF_USHORT}
|
||||
|
||||
/* If using the C implementation of alloca, define if you know the
|
||||
direction of stack growth for your system; otherwise it will be
|
||||
@ -447,77 +444,77 @@
|
||||
STACK_DIRECTION > 0 => grows toward higher addresses
|
||||
STACK_DIRECTION < 0 => grows toward lower addresses
|
||||
STACK_DIRECTION = 0 => direction of growth unknown */
|
||||
#cmakedefine STACK_DIRECTION
|
||||
#cmakedefine STACK_DIRECTION ${STACK_DIRECTION}
|
||||
|
||||
/* Define to 1 if you have the ANSI C header files. */
|
||||
#cmakedefine STDC_HEADERS
|
||||
#cmakedefine STDC_HEADERS 1
|
||||
|
||||
/* Place to put very large netCDF test files. */
|
||||
#cmakedefine TEMP_LARGE
|
||||
#cmakedefine TEMP_LARGE "${TEMP_LARGE}"
|
||||
|
||||
/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
|
||||
#cmakedefine TIME_WITH_SYS_TIME
|
||||
#cmakedefine TIME_WITH_SYS_TIME 1
|
||||
|
||||
/* if true, build DAP Client */
|
||||
#cmakedefine USE_DAP
|
||||
#cmakedefine USE_DAP 1
|
||||
|
||||
/* if true, include NC_DISKLESS code */
|
||||
#cmakedefine USE_DISKLESS
|
||||
#cmakedefine USE_DISKLESS 1
|
||||
|
||||
/* set this to use extreme numbers in tests */
|
||||
#cmakedefine USE_EXTREME_NUMBERS
|
||||
#cmakedefine USE_EXTREME_NUMBERS 1
|
||||
|
||||
/* if true, use ffio instead of posixio */
|
||||
#cmakedefine USE_FFIO
|
||||
#cmakedefine USE_FFIO 1
|
||||
|
||||
/* if true, include experimental fsync code */
|
||||
#cmakedefine USE_FSYNC
|
||||
#cmakedefine USE_FSYNC 1
|
||||
|
||||
/* if true, use HDF4 too */
|
||||
#cmakedefine USE_HDF4
|
||||
#cmakedefine USE_HDF4 1
|
||||
|
||||
/* If true, use use wget to fetch some sample HDF4 data, and then test against
|
||||
it. */
|
||||
#cmakedefine USE_HDF4_FILE_TESTS
|
||||
#cmakedefine USE_HDF4_FILE_TESTS 1
|
||||
|
||||
/* if true, enable dynamic loading support */
|
||||
#cmakedefine USE_LIBDL
|
||||
#cmakedefine USE_LIBDL 1
|
||||
|
||||
/* if true, use mmap for in-memory files */
|
||||
#cmakedefine USE_MMAP
|
||||
#cmakedefine USE_MMAP 1
|
||||
|
||||
/* if true, build netCDF-4 */
|
||||
#cmakedefine USE_NETCDF4
|
||||
#cmakedefine USE_NETCDF4 1
|
||||
|
||||
/* build the netCDF version 2 API */
|
||||
#cmakedefine USE_NETCDF_2
|
||||
#cmakedefine USE_NETCDF_2 1
|
||||
|
||||
/* if true, pnetcdf or parallel netcdf-4 is in use */
|
||||
#cmakedefine USE_PARALLEL
|
||||
#cmakedefine USE_PARALLEL 1
|
||||
|
||||
/* if true, parallel netcdf-4 is in use */
|
||||
#cmakedefine USE_PARALLEL4
|
||||
#cmakedefine USE_PARALLEL4 1
|
||||
|
||||
/* if true, compile in parallel netCDF-4 based on MPI/IO */
|
||||
#cmakedefine USE_PARALLEL_MPIO
|
||||
#cmakedefine USE_PARALLEL_MPIO 1
|
||||
|
||||
/* if true, compile in parallel netCDF-4 based on MPI/POSIX */
|
||||
#cmakedefine USE_PARALLEL_POSIX
|
||||
#cmakedefine USE_PARALLEL_POSIX 1
|
||||
|
||||
/* if true, parallel netCDF is used */
|
||||
#cmakedefine USE_PNETCDF
|
||||
#cmakedefine USE_PNETCDF 1
|
||||
|
||||
/* if true, use stdio instead of posixio */
|
||||
#cmakedefine USE_STDIO
|
||||
#cmakedefine USE_STDIO 1
|
||||
|
||||
/* if true, compile in szip compression in netCDF-4 variables */
|
||||
#cmakedefine USE_SZIP
|
||||
#cmakedefine USE_SZIP 1
|
||||
|
||||
/* if true, compile in zlib compression in netCDF-4 variables */
|
||||
#cmakedefine USE_ZLIB
|
||||
#cmakedefine USE_ZLIB 1
|
||||
|
||||
/* Version number of package */
|
||||
#cmakedefine VERSION
|
||||
#cmakedefine VERSION "${netCDF_VERSION}"
|
||||
|
||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
@ -527,7 +524,7 @@
|
||||
# endif
|
||||
#else
|
||||
# ifndef WORDS_BIGENDIAN
|
||||
# undef WORDS_BIGENDIAN
|
||||
#cmakedefine WORDS_BIGENDIAN
|
||||
# endif
|
||||
#endif
|
||||
|
||||
@ -537,24 +534,24 @@
|
||||
#endif
|
||||
|
||||
/* Number of bits in a file offset, on hosts where this is settable. */
|
||||
#cmakedefine _FILE_OFFSET_BITS
|
||||
#cmakedefine _FILE_OFFSET_BITS ${_FILE_OFFSET_BITS}
|
||||
|
||||
/* Define for large files, on AIX-style hosts. */
|
||||
#cmakedefine _LARGE_FILES
|
||||
#cmakedefine _LARGE_FILES ${_LARGE_FILES}
|
||||
|
||||
/* Define to 1 if type `char' is unsigned and you are not using gcc. */
|
||||
#ifndef __CHAR_UNSIGNED__
|
||||
# undef __CHAR_UNSIGNED__
|
||||
#cmakedefine __CHAR_UNSIGNED__
|
||||
#endif
|
||||
|
||||
/* Define to empty if `const' does not conform to ANSI C. */
|
||||
#cmakedefine const
|
||||
|
||||
/* Define to `long int' if <sys/types.h> does not define. */
|
||||
#cmakedefine off_t
|
||||
#cmakedefine off_t long int
|
||||
|
||||
/* Define to `unsigned int' if <sys/types.h> does not define. */
|
||||
#cmakedefine size_t
|
||||
#cmakedefine size_t unsigned int
|
||||
|
||||
/* Define strcasecmp, snprintf on Win32 systems. */
|
||||
#ifdef _WIN32
|
||||
|
@ -751,6 +751,7 @@ AC_MSG_NOTICE([checking types, headers, and functions])
|
||||
|
||||
AC_CHECK_HEADER(stdlib.h, ,AC_DEFINE([NO_STDLIB_H], [], [no stdlib.h]))
|
||||
AC_CHECK_HEADER(sys/types.h, ,AC_DEFINE([NO_SYS_TYPES_H], [], [no sys_types.h]))
|
||||
AC_CHECK_HEADERS([sys/dir.h])
|
||||
AC_CHECK_HEADERS([sys/param.h])
|
||||
#AC_CHECK_HEADERS([locale.h])
|
||||
AC_HEADER_DIRENT
|
||||
@ -923,7 +924,7 @@ if test "x$enable_netcdf_4" = xyes; then
|
||||
[AC_MSG_ERROR([Can't find or link to the hdf5 high-level. Use --disable-netcdf-4, or see config.log for errors.])])
|
||||
|
||||
AC_CHECK_HEADERS([hdf5.h], [], [AC_MSG_ERROR([Compiling a test with HDF5 failed. Either hdf5.h cannot be found, or config.log should be checked for other reason.])])
|
||||
AC_CHECK_FUNCS([H5Pget_fapl_mpiposix H5Pget_fapl_mpio H5Pset_deflate H5Z_SZIP H5free_memory])
|
||||
AC_CHECK_FUNCS([H5Pget_fapl_mpiposix H5Pget_fapl_mpio H5Pset_deflate H5Z_SZIP H5free_memory H5Pset_libver_bounds])
|
||||
|
||||
# The user may have parallel HDF5 based on MPI POSIX.
|
||||
if test "x$ac_cv_func_H5Pget_fapl_mpiposix" = xyes; then
|
||||
|
Loading…
Reference in New Issue
Block a user