diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2000-09-23 01:36:53 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2000-09-23 01:36:53 +0000 |
commit | 8c7499bdfa85657ea6c2517ada0ef4a4db489beb (patch) | |
tree | 1c37a6088704b234484b1352cd1f882fb2a253ad /math/py-numeric/files/patch-setup.py | |
parent | c9396a78f758664f44aa3d601d25c18c74372c10 (diff) |
Notes
Diffstat (limited to 'math/py-numeric/files/patch-setup.py')
-rw-r--r-- | math/py-numeric/files/patch-setup.py | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/math/py-numeric/files/patch-setup.py b/math/py-numeric/files/patch-setup.py deleted file mode 100644 index fa40835613fa..000000000000 --- a/math/py-numeric/files/patch-setup.py +++ /dev/null @@ -1,32 +0,0 @@ ---- setup.py.orig Tue Sep 12 22:27:29 2000 -+++ setup.py Mon Sep 18 10:00:53 2000 -@@ -22,9 +22,17 @@ - - - # Locate the directories in which the BLAS and LAPACK are located. --# if you know where they are, put it here: --BLASLIBDIR = None --LAPACKLIBDIR = None -+# if you know where they are, pass them via your environment or edit -+# the except: case. -+try: -+ BLASLIBDIR = os.environ['BLASLIBDIR'] -+except KeyError: -+ BLASLIBDIR = None -+try: -+ LAPACKLIBDIR = os.environ['LAPACKLIBDIR'] -+except KeyError: -+ LAPACKLIBDIR = None -+ - # places to look and what to look for - POSSIBLE_DIRECTORIES = ['/usr/local/lib', '/usr/lib', 'lapack_lite'] - if sys.platform == 'win32': -@@ -91,7 +99,7 @@ - Extension('umath', ['Src/umathmodule.c']), - Extension('lapack_lite', - ['Src/lapack_litemodule.c'], -- libraries=['lapack', 'blas'], -+ libraries=['lapack', 'blas', 'g2c'], - library_dirs=[BLASLIBDIR, LAPACKLIBDIR]), - Extension('ranlib', - ['Src/ranlibmodule.c', |