aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sci-physics/abinit/files/6.2.2-configure-fortran-calls.patch')
-rw-r--r--sci-physics/abinit/files/6.2.2-configure-fortran-calls.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/sci-physics/abinit/files/6.2.2-configure-fortran-calls.patch b/sci-physics/abinit/files/6.2.2-configure-fortran-calls.patch
deleted file mode 100644
index 9ed34697d..000000000
--- a/sci-physics/abinit/files/6.2.2-configure-fortran-calls.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff -Naur abinit-6.2.2_orig/config/m4/conn-trio.m4 abinit-6.2.2/config/m4/conn-trio.m4
---- config/m4/conn-trio.m4 2010-08-07 04:31:29.000000000 +0000
-+++ config/m4/conn-trio.m4 2010-08-11 15:03:20.000000000 +0000
-@@ -183,6 +183,10 @@
- AC_MSG_CHECKING([whether the specified HDF library works])
- AC_LINK_IFELSE([AC_LANG_PROGRAM([],
- [[
-- call h5fcreate_f
-+ use hdf5
-+ character (len = 42) :: filename
-+ integer :: mode, hferr
-+ integer(hid_t) :: hfid
-+ call h5fcreate_f(filename, mode, hfid, hferr)
- ]])], [abi_trio_hdf_has_libs="yes"], [abi_trio_hdf_has_libs="no"])
- AC_MSG_RESULT([${abi_trio_hdf_has_libs}])
-@@ -250,7 +251,9 @@
- AC_LINK_IFELSE([AC_LANG_PROGRAM([],
- [[
- use netcdf
-- call nf90_open
-+ character (len = 42) :: filename
-+ integer :: status, mode, ncid
-+ status=nf90_open(filename, mode, ncid)
- ]])], [abi_trio_netcdf_has_libs="yes"], [abi_trio_netcdf_has_libs="no"])
- AC_MSG_RESULT([${abi_trio_netcdf_has_libs}])
- fi