diff options
author | Maho Nakata <maho@FreeBSD.org> | 2007-09-29 12:53:56 +0000 |
---|---|---|
committer | Maho Nakata <maho@FreeBSD.org> | 2007-09-29 12:53:56 +0000 |
commit | 01f7ecb3eab5f274be76028fa2daa70385714fca (patch) | |
tree | e1bd131fe2eb4c3cb2f7fa743b6058f5cd968472 /math/lapack/files/patch-ab | |
parent | - Revert: overlooked the distinfo fix (diff) |
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
Diffstat (limited to 'math/lapack/files/patch-ab')
-rw-r--r-- | math/lapack/files/patch-ab | 38 |
1 files changed, 0 insertions, 38 deletions
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 <sys/types.h> -+ #include <sys/time.h> -+ #include <sys/resource.h> -+ -+ 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; -+ } |