summaryrefslogtreecommitdiff
path: root/math/py-numpy/files
diff options
context:
space:
mode:
authorGerald Pfeifer <gerald@FreeBSD.org>2009-01-08 01:21:47 +0000
committerGerald Pfeifer <gerald@FreeBSD.org>2009-01-08 01:21:47 +0000
commitd2e5fbc29f8f4c4c611518ac829789a0ebe03398 (patch)
tree53dd83bb421467ae561ca8612a5ab4a13af5aa82 /math/py-numpy/files
parent- update to 1.19 (diff)
Remove run-time dependency on lang/gcc42 which is now transparently
handled by USE_FORTRAN. Tweak various aspects of configuration. Submitted by: Li-Lun "Leland" Wang <llwang@infor.org> (maintainer)
Notes
Notes: svn path=/head/; revision=225431
Diffstat (limited to 'math/py-numpy/files')
-rw-r--r--math/py-numpy/files/patch-numpy-distutils-fcompiler-gnu.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/math/py-numpy/files/patch-numpy-distutils-fcompiler-gnu.py b/math/py-numpy/files/patch-numpy-distutils-fcompiler-gnu.py
index 1eb1fcc823c1..35862e5dc671 100644
--- a/math/py-numpy/files/patch-numpy-distutils-fcompiler-gnu.py
+++ b/math/py-numpy/files/patch-numpy-distutils-fcompiler-gnu.py
@@ -5,7 +5,7 @@
# GNU Fortran (GCC) 3.4.2 (mingw-special)
- possible_executables = ['g77', 'f77']
-+ possible_executables = ['gfortran', 'gfortran42', 'g77', 'f77']
++ possible_executables = ['%%FC%%', 'g77', 'f77']
executables = {
'version_cmd' : [None, "--version"],
'compiler_f77' : [None, "-g", "-Wall", "-fno-second-underscore"],
@@ -14,7 +14,7 @@
executables[key].append('-mno-cygwin')
- g2c = 'g2c'
-+ g2c = 'gfortran'
++ g2c = '%%FC%%'
suggested_f90_compiler = 'gnu95'
@@ -23,7 +23,7 @@
# GNU Fortran (GCC) 4.3.0 20070316 (experimental)
- possible_executables = ['gfortran', 'f95']
-+ possible_executables = ['gfortran', 'gfortran42', 'f95']
++ possible_executables = ['%%FC%%', 'gfortran', 'f95']
executables = {
'version_cmd' : ["<F90>", "--version"],
'compiler_f77' : [None, "-Wall", "-ffixed-form",