diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-04-09 23:24:30 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-04-09 23:24:30 (GMT) |
commit | c8f8501ae3f8db4af6b82cabd1ab50009500717a (patch) | |
tree | 526a79f74b68570c69c14aef172b1e8f86ba7433 /fortran | |
parent | 79890b50222fa963ef6d110dd5f960d84b574643 (diff) | |
download | hdf5-c8f8501ae3f8db4af6b82cabd1ab50009500717a.zip hdf5-c8f8501ae3f8db4af6b82cabd1ab50009500717a.tar.gz hdf5-c8f8501ae3f8db4af6b82cabd1ab50009500717a.tar.bz2 |
[svn-r6619] Purpose:
Update
Description:
The "--enable-parallel=TYPE" option was revamped but the help string
wasn't modified.
Solution:
Modified it to print out just "--enable-parallel" because we no
longer support the "=TYPE" option.
Platforms tested:
arabica (Fortran)
Modi4 (Parallel & Fortran)
Burrwhite (Fortran & C++)
Misc. update:
Diffstat (limited to 'fortran')
-rwxr-xr-x | fortran/configure | 2 | ||||
-rw-r--r-- | fortran/configure.in | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/fortran/configure b/fortran/configure index b1f8b3b..d1994cd 100755 --- a/fortran/configure +++ b/fortran/configure @@ -1001,7 +1001,7 @@ Optional Features: --enable-filters=all Turn on all internal I/O filters. One may also specify a comma-separated list of filters or the word no. The default is all internal I/O filters. - --enable-parallel=TYPE Search for MPI-IO and MPI support files + --enable-parallel Search for MPI-IO and MPI support files Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] diff --git a/fortran/configure.in b/fortran/configure.in index 3723d46..e335fe1 100644 --- a/fortran/configure.in +++ b/fortran/configure.in @@ -649,8 +649,9 @@ dnl `--disable-parallel' but specifies a known parallel compiler (like mpicc dnl or mpcc) then parallel support is enabled but configure doesn't search dnl for any parallel header files or libraries. dnl -AC_ARG_ENABLE(parallel, - [ --enable-parallel=TYPE Search for MPI-IO and MPI support files]) +AC_ARG_ENABLE([parallel], + [AC_HELP_STRING([--enable-parallel], + [Search for MPI-IO and MPI support files])]) AC_MSG_CHECKING(for parallel support files) case "X-$enable_parallel" in |