diff options
author | Allen Byrne <50328838+byrnHDF@users.noreply.github.com> | 2021-08-20 21:24:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-20 21:24:01 (GMT) |
commit | 5df0118051f9d06799d2ca1172399e5067989b0e (patch) | |
tree | d1bf917a0007b2c416e5e04609fbf1721ba3685b /config/cmake/H5pubconf.h.in | |
parent | 8dca25eaa5de660fc8d7bd650d412f89107cbc7f (diff) | |
download | hdf5-5df0118051f9d06799d2ca1172399e5067989b0e.zip hdf5-5df0118051f9d06799d2ca1172399e5067989b0e.tar.gz hdf5-5df0118051f9d06799d2ca1172399e5067989b0e.tar.bz2 |
1.10 Merge windows compiler fixes #912 (#915)
* Merge windows compiler fixes #912
* Merge changes to check for pwd.h header
* Add missing define
* Merge Remove incorrect compiler check for windows clang sanitizer #942
Diffstat (limited to 'config/cmake/H5pubconf.h.in')
-rw-r--r-- | config/cmake/H5pubconf.h.in | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/config/cmake/H5pubconf.h.in b/config/cmake/H5pubconf.h.in index 6329cbc..a8c9596 100644 --- a/config/cmake/H5pubconf.h.in +++ b/config/cmake/H5pubconf.h.in @@ -289,6 +289,9 @@ /* Define to 1 if you have the <pthread.h> header file. */ #cmakedefine H5_HAVE_PTHREAD_H @H5_HAVE_PTHREAD_H@ +/* Define to 1 if you have the <pwd.h> header file. */ +#cmakedefine H5_HAVE_PWD_H @H5_HAVE_PWD_H@ + /* Define to 1 if you have the <quadmath.h> header file. */ #cmakedefine H5_HAVE_QUADMATH_H @H5_HAVE_QUADMATH_H@ @@ -670,15 +673,15 @@ /* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */ #cmakedefine H5_TIME_WITH_SYS_TIME @H5_TIME_WITH_SYS_TIME@ -/* Define using v1.10 public API symbols by default */ -#cmakedefine H5_USE_110_API_DEFAULT @H5_USE_110_API_DEFAULT@ - /* Define using v1.6 public API symbols by default */ #cmakedefine H5_USE_16_API_DEFAULT @H5_USE_16_API_DEFAULT@ /* Define using v1.8 public API symbols by default */ #cmakedefine H5_USE_18_API_DEFAULT @H5_USE_18_API_DEFAULT@ +/* Define using v1.10 public API symbols by default */ +#cmakedefine H5_USE_110_API_DEFAULT @H5_USE_110_API_DEFAULT@ + /* Define if the library will use file locking */ #cmakedefine H5_USE_FILE_LOCKING @H5_USE_FILE_LOCKING@ |