diff options
author | Rong-En Fan <rafan@FreeBSD.org> | 2006-11-15 05:50:40 +0000 |
---|---|---|
committer | Rong-En Fan <rafan@FreeBSD.org> | 2006-11-15 05:50:40 +0000 |
commit | 9c54ff04c118e799b11d9593734a2f07cf8dafd2 (patch) | |
tree | f646e66d8241031bdb2f34281af4ad9d90e84e87 /math/py-numpy/files/patch-numpy-distutils-system_info.py | |
parent | - Stick on SciPy 0.3.x for now (diff) |
- Update to 1.0rc1
- Add options for ATLAS
- Fix ATLAS detection
- Use feclearexcept(3) rather than fpsetsticky(3) on 5.3+
- Add CONFLICTS for f2py. Both ports install bin/f2py
PR: ports/103827
Submitted by: Li-Lun Wang
Approved by: maintainer timeout (6 weeks)
Diffstat (limited to '')
-rw-r--r-- | math/py-numpy/files/patch-numpy-distutils-system_info.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/math/py-numpy/files/patch-numpy-distutils-system_info.py b/math/py-numpy/files/patch-numpy-distutils-system_info.py new file mode 100644 index 000000000000..60983bbdefaf --- /dev/null +++ b/math/py-numpy/files/patch-numpy-distutils-system_info.py @@ -0,0 +1,11 @@ +--- numpy/distutils/system_info.py.orig Sun Jul 30 11:08:48 2006 ++++ numpy/distutils/system_info.py Fri Sep 29 12:22:29 2006 +@@ -855,6 +855,8 @@ + atlas_1 = None + for d in lib_dirs: + atlas = self.check_libs2(d,atlas_libs,[]) ++ if atlas is not None: ++ atlas['libraries'].extend(['g2c', 'm', 'pthread']) + lapack_atlas = self.check_libs2(d,['lapack_atlas'],[]) + if atlas is not None: + lib_dirs2 = [d] + self.combine_paths(d,['atlas*','ATLAS*']) |