mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-04-12 17:31:09 +08:00
[svn-r7282] Purpose:
Bug Fix Description: On "user02", the Fortran compiler is "efc". We weren't testing for this compiler (and I don't know how it was succeeding before...). Solution: Added efc to the list of Fortran compilers we check for. Platforms tested: Couldn't test as I don't have access to user02. But this doesn't affect other platforms. Misc. update:
This commit is contained in:
parent
2f7273dc73
commit
a9aa3859a7
@ -24,7 +24,7 @@ dnl
|
||||
dnl Check for a Fortran 9X compiler.
|
||||
dnl
|
||||
AC_DEFUN(AC_PROG_F9X,
|
||||
[AC_CHECK_PROGS(F9X, f90 pgf90 xlf90 f95 g95 xlf95)
|
||||
[AC_CHECK_PROGS(F9X, f90 pgf90 xlf90 f95 g95 xlf95 efc)
|
||||
test -z "$F9X" && AC_MSG_ERROR([no acceptable f9X compiler found in \$PATH])
|
||||
|
||||
AC_PROG_F9X_WORKS
|
||||
|
2
configure
vendored
2
configure
vendored
@ -7175,7 +7175,7 @@ if test "X$HDF_FORTRAN" = "Xyes"; then
|
||||
|
||||
|
||||
|
||||
for ac_prog in f90 pgf90 xlf90 f95 g95 xlf95
|
||||
for ac_prog in f90 pgf90 xlf90 f95 g95 xlf95 efc
|
||||
do
|
||||
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
||||
set dummy $ac_prog; ac_word=$2
|
||||
|
@ -16,6 +16,7 @@ dnl ----------------------------------------------------------------------
|
||||
dnl Initialize configure.
|
||||
dnl
|
||||
AC_REVISION($Id$)
|
||||
AC_PREREQ([2.53])
|
||||
|
||||
dnl AC_INIT takes the name of the package, the version number, and an
|
||||
dnl email address to report bugs. AC_CONFIG_SRCDIR takes a unique file
|
||||
|
Loading…
x
Reference in New Issue
Block a user