summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorJames Laird <jlaird@hdfgroup.org>2005-09-06 16:57:05 (GMT)
committerJames Laird <jlaird@hdfgroup.org>2005-09-06 16:57:05 (GMT)
commit9b1828ffd0799edabec86b79b15bd4b6b70bee28 (patch)
tree47c3dcb429728e47c3e55e520bb3ed7a0ead7051 /configure
parentf0bb265b2e4d8dfd9034950d4cbbb41e5233930d (diff)
downloadhdf5-9b1828ffd0799edabec86b79b15bd4b6b70bee28.zip
hdf5-9b1828ffd0799edabec86b79b15bd4b6b70bee28.tar.gz
hdf5-9b1828ffd0799edabec86b79b15bd4b6b70bee28.tar.bz2
[svn-r11353] Purpose:
Bug fix Description: Configure should now throw an error when C++ or threadsafe is enabled and a parallel compiler is being used. Platforms tested: sleipnir and modi4 Tested --enable-cxx --enable-parallel --disable-cxx --enable-cxx --disable-parallel cases in particular. Misc. update:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure15
1 files changed, 13 insertions, 2 deletions
diff --git a/configure b/configure
index f73d5fe..dfe6737 100755
--- a/configure
+++ b/configure
@@ -48110,18 +48110,29 @@ if test "${enable_parallel+set}" = set; then
fi;
-if test "${enable_cxx}" = "yes" -a "$enable_parallel" = "yes"; then
+if test "X${HDF_CXX}" = "Xyes" -a "X${enable_parallel}" = "Xyes"; then
{ { echo "$as_me:$LINENO: error: --enable-cxx and --enable-parallel flags are incompatible" >&5
echo "$as_me: error: --enable-cxx and --enable-parallel flags are incompatible" >&2;}
{ (exit 1); exit 1; }; }
fi
-if test "${enable_threadsafe}" = "yes" -a "$enable_parallel" = "yes"; then
+if test "X${THREADSAFE}" = "Xyes" -a "X${enable_parallel}" = "Xyes"; then
{ { echo "$as_me:$LINENO: error: --enable-threadsafe and --enable-parallel flags are incompatible" >&5
echo "$as_me: error: --enable-threadsafe and --enable-parallel flags are incompatible" >&2;}
{ (exit 1); exit 1; }; }
fi
+if test "X${PARALLEL}" != "X" -a "X${enable_cxx}" = "Xyes" ; then
+ { { echo "$as_me:$LINENO: error: An MPI compiler is being used; --enable-cxx is not allowed" >&5
+echo "$as_me: error: An MPI compiler is being used; --enable-cxx is not allowed" >&2;}
+ { (exit 1); exit 1; }; }
+fi
+if test "X${PARALLEL}" != "X" -a "X${THREADSAFE}" = "Xyes"; then
+ { { echo "$as_me:$LINENO: error: An MPI compiler is being used; --enable-threadsafe is not allowed" >&5
+echo "$as_me: error: An MPI compiler is being used; --enable-threadsafe is not allowed" >&2;}
+ { (exit 1); exit 1; }; }
+fi
+
echo "$as_me:$LINENO: checking for parallel support files" >&5
echo $ECHO_N "checking for parallel support files... $ECHO_C" >&6
case "X-$enable_parallel" in