aboutsummaryrefslogtreecommitdiff
path: root/math/petsc/files
diff options
context:
space:
mode:
authorThierry Thomas <thierry@FreeBSD.org>2006-07-24 08:39:17 +0000
committerThierry Thomas <thierry@FreeBSD.org>2006-07-24 08:39:17 +0000
commit08e99fba8908c45e5ef0833635316a20bca2b164 (patch)
tree1edbf6aa6eddca290e3974e7e25aff1f94fac79a /math/petsc/files
parent718dce273b4f813303f9d571144f01a65eee2814 (diff)
Notes
Diffstat (limited to 'math/petsc/files')
-rw-r--r--math/petsc/files/patch-python_PETSc_packages_BlasLapack.py23
1 files changed, 0 insertions, 23 deletions
diff --git a/math/petsc/files/patch-python_PETSc_packages_BlasLapack.py b/math/petsc/files/patch-python_PETSc_packages_BlasLapack.py
deleted file mode 100644
index 0f18156cfebe..000000000000
--- a/math/petsc/files/patch-python_PETSc_packages_BlasLapack.py
+++ /dev/null
@@ -1,23 +0,0 @@
---- python/PETSc/packages/BlasLapack.py.orig Fri Jul 21 04:44:48 2006
-+++ python/PETSc/packages/BlasLapack.py Sat Jul 22 13:57:25 2006
-@@ -117,14 +117,13 @@
- foundBlas = self.checkBlas(blasLibrary, self.getOtherLibs(foundBlas, blasLibrary), mangleFunc)
- if foundBlas:
- foundLapack = self.checkLapack(lapackLibrary, self.getOtherLibs(foundBlas, blasLibrary), mangleFunc)
-- elif not hasattr(self.compilers, 'FC'):
-- self.framework.logPrint('Checking cblaslapack')
-- foundcBlasLapack = self.checkBlas(blasLibrary, self.getOtherLibs(foundBlas, blasLibrary), 0, 'f2cblaslapack_id_')
-- if foundcBlasLapack:
-- foundBlas = self.checkBlas(blasLibrary, self.getOtherLibs(foundBlas, blasLibrary), 0, 'ddot_')
-+ else:
-+ self.framework.logPrint('Checking cblaslapack name-mangling')
-+ foundBlas = self.checkBlas(blasLibrary, self.getOtherLibs(foundBlas, blasLibrary), 0, 'ddot_')
-+ if foundBlas:
-+ self.framework.logPrint('Found cblaslapack')
- foundLapack = self.checkLapack(lapackLibrary, self.getOtherLibs(foundBlas, blasLibrary), 0, ['dgetrs_', 'dgeev_'])
-- if foundBlas and foundLapack:
-- self.framework.logPrint('Found cblaslapack')
-+ if foundLapack:
- self.f2c = 1
- return (foundBlas, foundLapack)
-