Skip to content

Commit 2ed4f4f

Browse files
authored
Merge pull request #13239 from hppritcha/do_we_have_ts29113
configure: be more verbose about fort TS 29113
2 parents 37df78b + 94a2a11 commit 2ed4f4f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

config/opal_summary.m4

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,11 @@ EOF
4949
elif test $OMPI_BUILD_FORTRAN_BINDINGS = $OMPI_FORTRAN_USEMPI_BINDINGS ; then
5050
echo "Build MPI Fortran bindings: mpif.h, use mpi" >&AS_MESSAGE_FD
5151
elif test $OMPI_BUILD_FORTRAN_BINDINGS = $OMPI_FORTRAN_USEMPIF08_BINDINGS ; then
52-
echo "Build MPI Fortran bindings: mpif.h, use mpi, use mpi_f08" >&AS_MESSAGE_FD
52+
if test $OMPI_FORTRAN_HAVE_TS -eq 1; then
53+
echo "Build MPI Fortran bindings: mpif.h, use mpi, use mpi_f08(including TS 29113 support)" >&AS_MESSAGE_FD
54+
else
55+
echo "Build MPI Fortran bindings: mpif.h, use mpi, use mpi_f08(NOT including TS 29113 support)" >&AS_MESSAGE_FD
56+
fi
5357
else
5458
echo "Build MPI Fortran bindings: no" >&AS_MESSAGE_FD
5559
fi

0 commit comments

Comments
 (0)