1
1
- Replace some of the Fint detection code with spaces, not tabs :-)

This commit was SVN r494.
Этот коммит содержится в:
Jeff Squyres 2004-01-20 23:16:25 +00:00
родитель ba7cc48476
Коммит 71358e7e87

Просмотреть файл

@ -87,9 +87,9 @@ AH_BOTTOM([
#endif /* LAM_CONFIG_H */
])
# What kind of machine are we on?
# Other basic setup stuff (shared with modules)
AC_CANONICAL_HOST
LAM_BASIC_SETUP
############################################################################
@ -221,10 +221,11 @@ LAM_SETUP_CXX
LAM_SETUP_F77
if test -n "$F77"; then
LAM_F77_FIND_EXT_SYMBOL_CONVENTION($F77)
# checking the sizeof fortran interger. This is needed to define
# MPI_Fint. This is needed for C bindings and hence there is no
# bearing of --enable-fortran flag on this test.
#
LAM_SIZEOF_FORTRAN_INT=0
LAM_GET_SIZEOF_FORTRAN_TYPE(INTEGER, LAM_SIZEOF_FORTRAN_INT)
fi
@ -324,7 +325,7 @@ if test -n "$F77"; then
fi
AC_DEFINE_UNQUOTED(MPI_Fint, $MPI_FINT_TYPE, [Type of MPI_Fint])
else
AC_MSG_WARN([*** WARNING: Could not detect a f77 compiler. MPI_fint will be defined as an int])
AC_MSG_WARN([*** WARNING: Could not detect a f77 compiler. MPI_Fint will be defined as an int])
MPI_FINT_TYPE=int
AC_DEFINE_UNQUOTED(MPI_Fint, $MPI_FINT_TYPE, [Type of MPI_Fint])
fi