diff options
author | thierry <thierry@FreeBSD.org> | 2010-09-24 03:47:12 +0800 |
---|---|---|
committer | thierry <thierry@FreeBSD.org> | 2010-09-24 03:47:12 +0800 |
commit | f90fd474108a6e33473b46757e1ef702868ebf43 (patch) | |
tree | ef7b8187ddbc003289141d93cd90f12d26dc5916 /cad | |
parent | 01f056a5ad201e443513de40c4a36ec48b12e037 (diff) | |
download | freebsd-ports-gnome-f90fd474108a6e33473b46757e1ef702868ebf43.tar.gz freebsd-ports-gnome-f90fd474108a6e33473b46757e1ef702868ebf43.tar.zst freebsd-ports-gnome-f90fd474108a6e33473b46757e1ef702868ebf43.zip |
Strictly depends on Gcc-4.4, even if the default FORTRAN compiler
depends on Gcc-4.5.
Submitted by: Stas Timokhin <devel (at) stasyan.com> (maintainer)
Diffstat (limited to 'cad')
-rw-r--r-- | cad/salome/Makefile.ext | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/cad/salome/Makefile.ext b/cad/salome/Makefile.ext index 2bacdb68e3be..c6d5933cddd7 100644 --- a/cad/salome/Makefile.ext +++ b/cad/salome/Makefile.ext @@ -4,8 +4,12 @@ USE_PYTHON= 2.4+ USE_GMAKE= yes USE_LDCONFIG= yes SAL_MODULE= ${PKGNAMESUFFIX:S/-//} -USE_FORTRAN=yes USE_GCC= 4.4 +FC:= gfortran44 +F77:= gfortran44 +CONFIGURE_ENV+= F77="${F77}" FC="${FC}" FFLAGS="${FFLAGS}" +MAKE_ENV+= F77="${F77}" FC="${FC}" FFLAGS="${FFLAGS}" + #SAL_MODULE_UPPER= `${ECHO} ${SAL_MODULE} | ${AWK} '{ print(toupper($$1)); }'` #SAL_MODULE_UPPER= YACS |