diff options
author | schwab <schwab@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-05 12:50:53 +0000 |
---|---|---|
committer | schwab <schwab@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-05 12:50:53 +0000 |
commit | 6d73cceb1e2c4dc1c13bcd9b21be405b2974de15 (patch) | |
tree | 3a99e564fdb7759f0dda73abc108328dab4b8187 /libgfortran/configure.ac | |
parent | b6e72c17ee40e50a2696930cda57ad35b9006e92 (diff) | |
download | gcc-6d73cceb1e2c4dc1c13bcd9b21be405b2974de15.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90122 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgfortran/configure.ac')
-rw-r--r-- | libgfortran/configure.ac | 10 |
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 |