aboutsummaryrefslogtreecommitdiff
path: root/libgfortran/configure.ac
diff options
context:
space:
mode:
authorschwab <>2004-11-05 12:50:53 +0000
committerschwab <>2004-11-05 12:50:53 +0000
commitd70b4aa2ad951f2e41dc025e9a811b0ec266dbfa (patch)
tree3a99e564fdb7759f0dda73abc108328dab4b8187 /libgfortran/configure.ac
parentae20af3459bc158836de0689cd665f49cac9223b (diff)
* configure.ac: Use AC_PROG_FC, FC and FCFLAGS instead of
AC_PROG_F77, F77 and FFLAGS. * Makefile.am (selected_int_kind.inc, selected_real_kind.inc): Use FCCOMPILE instead of F77COMPILE. * configure, Makefile.in: Regenerate.
Diffstat (limited to 'libgfortran/configure.ac')
-rw-r--r--libgfortran/configure.ac10
1 files changed, 5 insertions, 5 deletions
diff --git a/libgfortran/configure.ac b/libgfortran/configure.ac
index 598070d1ec3..d99eded4428 100644
--- a/libgfortran/configure.ac
+++ b/libgfortran/configure.ac
@@ -138,11 +138,11 @@ AC_SUBST(enable_static)
#AC_MSG_NOTICE([====== Finished libtool configuration]) ; sleep 10
# We need gfortran to compile parts of the library
-# We can't use AC_PROG_F77 because it expects a fully working gfortran.
-#AC_PROG_F77(gfortran)
-F77="$GFORTRAN"
-AC_PROG_F77(gfortran)
-FFLAGS="$FFLAGS -Wall -fno-repack-arrays -fno-underscoring"
+# We can't use AC_PROG_FC because it expects a fully working gfortran.
+#AC_PROG_FC(gfortran)
+FC="$GFORTRAN"
+AC_PROG_FC(gfortran)
+FCFLAGS="$FCFLAGS -Wall -fno-repack-arrays -fno-underscoring"
AC_SYS_LARGEFILE
AC_FUNC_MMAP