mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-01-18 15:15:56 +08:00
Merge pull request #585 in HDFFV/hdf5 from ~DEROBINS/hdf5_der:configure_fortran_long_double_bug to develop
* commit '8c347d794a06b8b57c407499e1a441cc0f415380': Fixed a bug in autotools Fortran processing where a test for the presence of a C long double type always returned true.
This commit is contained in:
commit
598856b37e
@ -585,11 +585,11 @@ if test "X$HDF_FORTRAN" = "Xyes"; then
|
||||
AC_DEFINE([FORTRAN_HAVE_STORAGE_SIZE], [1], [Define if we have Fortran intrinsic STORAGE_SIZE])
|
||||
fi
|
||||
|
||||
if test "X$HAVE_C_SIZEOF_FORTRAN" = "Xyes"; then
|
||||
if test "X$HAVE_C_SIZEOF_FORTRAN" = "Xyes"; then
|
||||
AC_DEFINE([FORTRAN_HAVE_C_SIZEOF], [1], [Define if we have Fortran intrinsic C_SIZEOF])
|
||||
fi
|
||||
|
||||
if test "X$HAVE_SIZEOF_FORTRAN" = "Xyes"; then
|
||||
if test "X$HAVE_SIZEOF_FORTRAN" = "Xyes"; then
|
||||
AC_DEFINE([FORTRAN_HAVE_SIZEOF], [1], [Define if we have Fortran intrinsic SIZEOF])
|
||||
fi
|
||||
|
||||
@ -604,7 +604,7 @@ if test "X$HDF_FORTRAN" = "Xyes"; then
|
||||
|
||||
## Is C_LONG_DOUBLE different from C_DOUBLE
|
||||
FORTRAN_C_LONG_DOUBLE_IS_UNIQUE="0"
|
||||
if test "X$FORTRAN_HAVE_C_LONG_DOUBLE"; then
|
||||
if test "$FORTRAN_HAVE_C_LONG_DOUBLE" = "1"; then
|
||||
PAC_PROG_FC_C_LONG_DOUBLE_EQ_C_DOUBLE
|
||||
if test "X$C_LONG_DOUBLE_IS_UNIQUE_FORTRAN" = "Xyes"; then
|
||||
FORTRAN_C_LONG_DOUBLE_IS_UNIQUE="1"
|
||||
|
@ -58,7 +58,7 @@ END PROGRAM PROG_FC_HAVE_F2003_REQUIREMENTS
|
||||
!---- START ----- Check to see C_LONG_DOUBLE is different from C_DOUBLE
|
||||
MODULE type_mod
|
||||
USE ISO_C_BINDING
|
||||
INTERFACE h5t
|
||||
INTERFACE h5t
|
||||
MODULE PROCEDURE h5t_c_double
|
||||
MODULE PROCEDURE h5t_c_long_double
|
||||
END INTERFACE
|
||||
|
@ -476,4 +476,3 @@ rm -f pac_Cconftest.out
|
||||
],[])
|
||||
])
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user