Skip to content

Commit 36d6f50

Browse files
authored
Merge pull request #3174 from jsquyres/pr/v2.0.x/fix-fortran-configury-double-sized-complex
v2.0.3: configury: consider double _Complex as a candidate for the C equivale…
2 parents 40dc039 + 3345e76 commit 36d6f50

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

config/ompi_setup_mpi_fortran.m4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ dnl Copyright (c) 2006-2008 Sun Microsystems, Inc. All rights reserved.
1515
dnl Copyright (c) 2006-2007 Los Alamos National Security, LLC. All rights
1616
dnl reserved.
1717
dnl Copyright (c) 2009 Oak Ridge National Labs. All rights reserved.
18-
dnl Copyright (c) 2014-2015 Research Organization for Information Science
18+
dnl Copyright (c) 2014-2016 Research Organization for Information Science
1919
dnl and Technology (RIST). All rights reserved.
2020
dnl $COPYRIGHT$
2121
dnl
@@ -187,7 +187,7 @@ AC_DEFUN([OMPI_SETUP_MPI_FORTRAN],[
187187
OMPI_FORTRAN_CHECK([DOUBLE PRECISION], [yes],
188188
[float, double, long double], [-1], [yes])
189189

190-
OMPI_FORTRAN_CHECK([COMPLEX], [yes], [float _Complex], [-1], [no])
190+
OMPI_FORTRAN_CHECK([COMPLEX], [yes], [float _Complex, double _Complex], [-1], [no])
191191

192192
# The complex*N tests are a bit different (note: the complex tests are
193193
# the same as all the rest, because complex is a composite of two

0 commit comments

Comments
 (0)