Skip to content
Snippets Groups Projects
Commit a4190711 authored by Thomas Jahns's avatar Thomas Jahns :cartwheel: Committed by Sergey Kosukhin
Browse files

Mandate FC/F77 to be working when not explicitly disabled.

parent 1baa07ff
No related branches found
No related tags found
2 merge requests!34Version 2.2.0,!13Consolidation with CDI-PIO (develop)
......@@ -38,9 +38,16 @@ AC_PROG_FC
AS_IF([test -n "$FC" && test "X$FC" != Xno],
[AC_FC_SRCEXT([f90])
AC_LANG_PUSH([Fortran])
dnl check that FC is working just as well as CC
_AC_COMPILER_EXEEXT
AC_PROG_FPP
AC_LANG_POP([Fortran])])
AC_PROG_F77
AS_IF([test -n "$F77" && test "X$F77" != Xno],
[AC_LANG_PUSH([Fortran 77])
dnl check that F77 is working just as well as CC
_AC_COMPILER_EXEEXT
AC_LANG_POP([Fortran 77])])
AC_PROG_CXX
AC_PROG_INSTALL
AC_OPENMP
......
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