From d2de905d16fba79ad75f3b053edd24d2c64bb56a Mon Sep 17 00:00:00 2001 From: Thomas Gellekum Date: Mon, 4 Sep 2000 12:35:31 +0000 Subject: Upgrade to 16.0. Some parts (patch-Makefile, Makefile mods) taken from a patch set submitted by sobomax. --- math/numpy/files/patch-setup.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 math/numpy/files/patch-setup.py (limited to 'math/numpy/files/patch-setup.py') diff --git a/math/numpy/files/patch-setup.py b/math/numpy/files/patch-setup.py new file mode 100644 index 000000000000..69822451bcce --- /dev/null +++ b/math/numpy/files/patch-setup.py @@ -0,0 +1,23 @@ +--- setup.py.orig Mon Aug 28 13:49:52 2000 ++++ setup.py Thu Aug 31 17:48:46 2000 +@@ -21,9 +21,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': -- cgit v1.2.3