configure.ac: Test for executability of GFORTRAN.

2010-01-20  Paolo Bonzini  <bonzini@gnu.org>

	* configure.ac: Test for executability of GFORTRAN.
	* configure: Regenerate.

From-SVN: r156232
This commit is contained in:
Paolo Bonzini 2010-01-26 07:57:21 +00:00 committed by Paolo Bonzini
parent 69b1816394
commit d0709b6aee
3 changed files with 15 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2010-01-20 Paolo Bonzini <bonzini@gnu.org>
* configure.ac: Test for executability of GFORTRAN.
* configure: Regenerate.
2010-01-05 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* configure: Regenerate.

6
libgomp/configure vendored
View file

@ -11459,7 +11459,11 @@ case `echo $GFORTRAN` in
-* | no* )
FC=no ;;
*)
FC="$GFORTRAN" ;;
if test -x "$GFORTRAN"; then
FC="$GFORTRAN"
else
FC=no
fi ;;
esac
ac_ext=${ac_fc_srcext-f}
ac_compile='$FC -c $FCFLAGS $ac_fcflags_srcext conftest.$ac_ext >&5'

View file

@ -146,7 +146,11 @@ case `echo $GFORTRAN` in
-* | no* )
FC=no ;;
*)
FC="$GFORTRAN" ;;
if test -x "$GFORTRAN"; then
FC="$GFORTRAN"
else
FC=no
fi ;;
esac
AC_PROG_FC(gfortran)
FCFLAGS="$FCFLAGS -Wall"