summaryrefslogtreecommitdiffstats
path: root/config/irix6.x
diff options
context:
space:
mode:
authorMike McGreevy <mamcgree@hdfgroup.org>2009-10-15 21:53:23 (GMT)
committerMike McGreevy <mamcgree@hdfgroup.org>2009-10-15 21:53:23 (GMT)
commit148828d46a193048e99df253c429bc0ea307de1a (patch)
treef12c0ba51ec986e7ac85ef4528aaf99d3637597a /config/irix6.x
parent22e4a9b874798c580f73b8ba22072123ef4a3ba1 (diff)
downloadhdf5-148828d46a193048e99df253c429bc0ea307de1a.zip
hdf5-148828d46a193048e99df253c429bc0ea307de1a.tar.gz
hdf5-148828d46a193048e99df253c429bc0ea307de1a.tar.bz2
[svn-r17655] Purpose:
Configure cache-val cleanup Description: Corrected some misnamed cache values in configure / config files. Tested: h5committest
Diffstat (limited to 'config/irix6.x')
-rw-r--r--config/irix6.x10
1 files changed, 5 insertions, 5 deletions
diff --git a/config/irix6.x b/config/irix6.x
index 1f5bbee..9bd9c4c 100644
--- a/config/irix6.x
+++ b/config/irix6.x
@@ -176,18 +176,18 @@ hdf5_cv_integer_to_ldouble_accurate=${hdf5_cv_integer_to_ldouble_accurate='no'}
# Versions 7.4.2m or newer work.
# Up to version 7.4.4m, it cannot handle collective IO with non-contribution
# of some processes.
-# Fix $hdf5_mpi_complex_derived_datatype_works if it is not set and is using cc.
-if [ -z "$hdf5_mpi_complex_derived_datatype_works" -a $CC_BASENAME = cc ]; then
+# Fix $hdf5_cv_mpi_complex_derived_datatype_works if it is not set and is using cc.
+if [ -z "$hdf5_cv_mpi_complex_derived_datatype_works" -a $CC_BASENAME = cc ]; then
ccversion=`$CC -version 2>&1 | sed -e 's/.*Version //p'`
ccversion1=`echo $ccversion | cut -f1 -d.`
ccversion2=`echo $ccversion | cut -f2 -d.`
# Assume all versions 7.4.* or newer are okay
# and assume ccversion2 is never larger than 99.
ccversionval=`expr $ccversion1 \* 100 + $ccversion2`
- hdf5_mpi_special_collective_io_works='no'
+ hdf5_cv_mpi_special_collective_io_works='no'
if [ $ccversionval -lt 704 ]; then
- hdf5_mpi_complex_derived_datatype_works='no'
-# hdf5_mpi_special_collective_io_works='no'
+ hdf5_cv_mpi_complex_derived_datatype_works='no'
+# hdf5_cv_mpi_special_collective_io_works='no'
fi
fi