From af2aeb5e2e79e310accbb6466882641591a3d71e Mon Sep 17 00:00:00 2001 From: gerald Date: Fri, 24 Sep 2010 23:14:46 +0000 Subject: USE_FORTRAN=yes now implies lang/gcc45 up from lang/gcc44. cad/salome and math/freemat needed some adjustments, apart from these this looks like a far more easy upgrade than previous ones and according to the upstream developers we do not even need to bump dependent ports since GNU Fortran 4.4 and 4.5 are sufficiently compatible. Tested by: erwin (and pointyhat) --- Mk/bsd.gcc.mk | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Mk') diff --git a/Mk/bsd.gcc.mk b/Mk/bsd.gcc.mk index 2a030b56fd0e..92093864f94b 100644 --- a/Mk/bsd.gcc.mk +++ b/Mk/bsd.gcc.mk @@ -19,7 +19,7 @@ # If your port needs a Fortran compiler, please specify that with the # USE_FORTRAN= knob. Here is the list of options for that knob: # -# USE_FORTRAN= yes # use gfortran44 (lang/gcc44) +# USE_FORTRAN= yes # use gfortran45 (lang/gcc45) # USE_FORTRAN= g77 # use g77-34 (lang/gcc34; FreeBSD>=7) # # or system f77 (/usr/bin/f77; FreeBSD<=6) # USE_FORTRAN= ifort # use the Intel compiler (lang/ifc) @@ -74,9 +74,9 @@ _GCCVERSION_${v}_V= ${j} # The default case, with a current lang/gcc port. . if ${USE_FORTRAN} == yes -_USE_GCC:= 4.4 -FC:= gfortran44 -F77:= gfortran44 +_USE_GCC:= 4.5 +FC:= gfortran45 +F77:= gfortran45 # Intel Fortran compiler from lang/ifc. . elif ${USE_FORTRAN} == ifort -- cgit