diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-12-01 19:59:18 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-12-01 19:59:18 (GMT) |
commit | 14234fc01aa2cc5dac60b11050a759c1b23371cb (patch) | |
tree | d01623f47451f44019891ba63be239e957ab6d00 | |
parent | ecd06afe4e64d878b582e7313e7d65afe1c6981a (diff) | |
download | hdf5-14234fc01aa2cc5dac60b11050a759c1b23371cb.zip hdf5-14234fc01aa2cc5dac60b11050a759c1b23371cb.tar.gz hdf5-14234fc01aa2cc5dac60b11050a759c1b23371cb.tar.bz2 |
[svn-r3052] Purpose:
Attempted Bug Fix
Description:
Some machines (Cray T3E, need you ask?) use the ``-p'' flag for
enabling double precision. This breaks our Fortran interface.
Solution:
Put this test last. However, the T3E apparently doesn't need
modules, so we may have to resort to a better "fix" than this
in the future.
Platforms tested:
T3E
-rw-r--r-- | fortran/acsite.m4 | 2 | ||||
-rwxr-xr-x | fortran/configure | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/fortran/acsite.m4 b/fortran/acsite.m4 index 3ed83be..f953c01 100644 --- a/fortran/acsite.m4 +++ b/fortran/acsite.m4 @@ -223,7 +223,7 @@ cd .. AC_MSG_CHECKING(how $F9X finds modules) -for flag in "-p" "-M" "-I"; do +for flag in "-M" "-I" "-p"; do cat >conftest.$ac_ext <<EOF program conftest use module diff --git a/fortran/configure b/fortran/configure index bed85f5..7642386 100755 --- a/fortran/configure +++ b/fortran/configure @@ -1926,7 +1926,7 @@ cd .. echo $ac_n "checking how $F9X finds modules""... $ac_c" 1>&6 echo "configure:1928: checking how $F9X finds modules" >&5 -for flag in "-p" "-M" "-I"; do +for flag in "-M" "-I" "-p"; do cat >conftest.$ac_ext <<EOF program conftest use module |