summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-03-18 04:21:31 (GMT)
committerGitHub <noreply@github.com>2023-03-18 04:21:31 (GMT)
commitebdbd503ca1d1a50701937542c6a9e66a3885458 (patch)
tree622a3fefca8af417c946ae5e2447fee95c374fbe /configure.ac
parenta01f570f97287295e960633feab4c3908ea318d7 (diff)
downloadhdf5-ebdbd503ca1d1a50701937542c6a9e66a3885458.zip
hdf5-ebdbd503ca1d1a50701937542c6a9e66a3885458.tar.gz
hdf5-ebdbd503ca1d1a50701937542c6a9e66a3885458.tar.bz2
Allow parallel thread-safe builds (#2584)
* Allow parallel + thread-safe builds No longer require the "enable unsupported" option to build this configuration in CMake and the Autotools. * Add a release note for parallel thread-safety
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac8
1 files changed, 0 insertions, 8 deletions
diff --git a/configure.ac b/configure.ac
index cd8ba15..c097f26 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2858,14 +2858,6 @@ if test "X${ALLOW_UNSUPPORTED}" != "Xyes"; then
fi
fi
-## --enable-parallel is also incompatible with --enable-threadsafe, unless
-## --enable-unsupported has been specified on the configure line.
-if test "X${ALLOW_UNSUPPORTED}" != "Xyes"; then
- if test "X${THREADSAFE}" = "Xyes" -a "X${enable_parallel}" = "Xyes"; then
- AC_MSG_ERROR([--enable-threadsafe and --enable-parallel flags are incompatible. Use --enable-unsupported to override this error.])
- fi
-fi
-
AC_MSG_CHECKING([for parallel support files])
case "X-$enable_parallel" in
X-|X-no|X-none)