summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2019-08-28 18:51:25 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2019-08-28 18:51:25 (GMT)
commitb5c2b64307dc01128d2a90771cf51076bc1252db (patch)
tree01b6f0f3673f23c5a97b82a5c457bc5220632528 /config
parent623e0041a493e2c9937d09de6a0682472fe88d05 (diff)
downloadhdf5-b5c2b64307dc01128d2a90771cf51076bc1252db.zip
hdf5-b5c2b64307dc01128d2a90771cf51076bc1252db.tar.gz
hdf5-b5c2b64307dc01128d2a90771cf51076bc1252db.tar.bz2
Correct threadsafe enable code
Diffstat (limited to 'config')
-rw-r--r--config/cmake/H5pubconf.h.in7
1 files changed, 6 insertions, 1 deletions
diff --git a/config/cmake/H5pubconf.h.in b/config/cmake/H5pubconf.h.in
index 05b0fff..9ccfae4 100644
--- a/config/cmake/H5pubconf.h.in
+++ b/config/cmake/H5pubconf.h.in
@@ -390,8 +390,13 @@
/* Define to 1 if you have the <szlib.h> header file. */
#cmakedefine H5_HAVE_SZLIB_H @H5_HAVE_SZLIB_H@
+#if defined(_WIN32) && !defined(H5_BUILT_AS_DYNAMIC_LIB)
+/* Not supported on WIN32 platforms with static linking */
+/* #undef H5_HAVE_THREADSAFE */
+#else
/* Define if we have thread safe support */
-#cmakedefine H5_HAVE_THREADSAFE @H5_HAVE_THREADSAFE@
+# cmakedefine H5_HAVE_THREADSAFE @H5_HAVE_THREADSAFE@
+#endif
/* Define if timezone is a global variable */
#cmakedefine H5_HAVE_TIMEZONE @H5_HAVE_TIMEZONE@