Skip to content
Snippets Groups Projects
Commit b1a3069e authored by Sergey Kosukhin's avatar Sergey Kosukhin
Browse files

Disable Fortran 77 interface by default for consistency.

parent be5013e7
No related branches found
No related tags found
1 merge request!11Consolidation with CDI-PIO (1.8.x)
......@@ -13,7 +13,7 @@ test -f "${top_srcdir}/configure" || "${top_srcdir}/autogen.sh"
# Create a distribution file with minimalistic configuration:
switch_for_module texlive
"${top_srcdir}/configure" --disable-cf-interface
"${top_srcdir}/configure"
make -j8 dist
# Create a subdirectory for further testing and switch to it:
......
......@@ -40,9 +40,9 @@ AM_CONDITIONAL([ENABLE_ISOC_INTERFACE],
AC_ARG_ENABLE([cf-interface],
[AS_HELP_STRING([--enable-cf-interface],
[create Fortran 77 interface using cfortran.h @<:@default=yes@:>@])],
[create Fortran 77 interface using cfortran.h @<:@default=no@:>@])],
[test "x$enableval" != xno && enable_cf_interface=yes],
[enable_cf_interface=yes])
[enable_cf_interface=no])
AM_CONDITIONAL([ENABLE_CF_INTERFACE], [test "x$enable_cf_interface" = xyes])
dnl We need FC for the Fortran 90 and for the Fortran 77 interfaces. In the
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment