From 01f7ecb3eab5f274be76028fa2daa70385714fca Mon Sep 17 00:00:00 2001 From: Maho Nakata Date: Sat, 29 Sep 2007 12:53:56 +0000 Subject: Update to 3.3.1. According to http://www.netlib.org/lapack/lapack-3.1.0.changes > The interfaces to primary computational routines are fixed and > will not be changed by minor LAPACK versions (e.g. 3.x). > Primary routines are those prefixed by a precision and matrix > type like SGERFS, CUNMQR, ZHEGV, etc., and these interfaces > will remain the same for all LAPACK version 3 versions. So I didn't change the version number of shared lib. See also PR: 116166 --- math/lapack/files/patch-ab | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 math/lapack/files/patch-ab (limited to 'math/lapack/files/patch-ab') diff --git a/math/lapack/files/patch-ab b/math/lapack/files/patch-ab deleted file mode 100644 index 9344b2e495ca..000000000000 --- a/math/lapack/files/patch-ab +++ /dev/null @@ -1,38 +0,0 @@ ---- INSTALL/Makefile~ Mon Mar 1 21:53:16 1999 -+++ INSTALL/Makefile Tue Sep 21 17:55:59 1999 -@@ -11,11 +11,11 @@ - testdlamch: dlamch.o lsame.o dlamchtst.o - $(LOADER) $(LOADOPTS) -o testdlamch dlamch.o lsame.o dlamchtst.o - --testsecond: second.o secondtst.o -- $(LOADER) $(LOADOPTS) -o testsecond second.o secondtst.o -+testsecond: second.o secondtst.o etime_.o -+ $(LOADER) $(LOADOPTS) -o testsecond second.o secondtst.o etime_.o - --testdsecnd: dsecnd.o dsecndtst.o -- $(LOADER) $(LOADOPTS) -o testdsecnd dsecnd.o dsecndtst.o -+testdsecnd: dsecnd.o dsecndtst.o etime_.o -+ $(LOADER) $(LOADOPTS) -o testdsecnd dsecnd.o dsecndtst.o etime_.o - - testieee: tstiee.o - $(LOADER) $(LOADOPTS) -o testieee tstiee.o -*** /dev/null Sun Jul 2 04:00:02 1995 ---- INSTALL/etime_.c Mon Jul 3 00:47:16 1995 -*************** -*** 0 **** ---- 1,15 ---- -+ #include -+ #include -+ #include -+ -+ float -+ etime_ (float *a) -+ { -+ struct rusage r; -+ float f; -+ -+ getrusage(RUSAGE_SELF, &r); -+ f = r.ru_utime.tv_sec + (float) r.ru_utime.tv_usec/1000000; -+ *a = f; -+ return f; -+ } -- cgit v1.2.3