diff options
author | maho <maho@FreeBSD.org> | 2012-03-12 15:47:17 +0800 |
---|---|---|
committer | maho <maho@FreeBSD.org> | 2012-03-12 15:47:17 +0800 |
commit | d7f3c37d3dfaddfa0f801e703518adf7ba51b512 (patch) | |
tree | 5b01556911b17123b244632d81c68600543a34bd /math | |
parent | 7fa86c1ef9e5d7a98128abe2fd835642ac08dd45 (diff) | |
download | freebsd-ports-gnome-d7f3c37d3dfaddfa0f801e703518adf7ba51b512.tar.gz freebsd-ports-gnome-d7f3c37d3dfaddfa0f801e703518adf7ba51b512.tar.zst freebsd-ports-gnome-d7f3c37d3dfaddfa0f801e703518adf7ba51b512.zip |
Fix
http://netlib.org/lapack/Errata/index2.html#_strong_span_class_green_bug0085_span_strong_xgesvd_problem_in_workspace_computation
.
PR: 165960
Submitted by: fork <forkandwait@gmail.com>
Feature safe: yes
Diffstat (limited to 'math')
-rw-r--r-- | math/lapack/Makefile | 2 | ||||
-rw-r--r-- | math/lapack/files/patch-r1207 | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/math/lapack/Makefile b/math/lapack/Makefile index 1234365f8269..c3b9bcb190e9 100644 --- a/math/lapack/Makefile +++ b/math/lapack/Makefile @@ -7,7 +7,7 @@ PORTNAME?= lapack PORTVERSION= 3.4.0 -PORTREVISION?= 1 +PORTREVISION?= 2 CATEGORIES= math MASTER_SITES= NL/lapack/ \ http://service-spi.web.cern.ch/service-spi/external/tarFiles/ diff --git a/math/lapack/files/patch-r1207 b/math/lapack/files/patch-r1207 new file mode 100644 index 000000000000..549b6caf9eb1 --- /dev/null +++ b/math/lapack/files/patch-r1207 @@ -0,0 +1,11 @@ +--- SRC/dgesvd.f 2011-11-12 04:34:11.000000000 +0900 ++++ SRC/dgesvd.f 2012-03-12 16:38:41.000000000 +0900 +@@ -477,7 +477,7 @@ + CALL DGELQF( M, N, A, LDA, DUM(1), DUM(1), -1, IERR ) + LWORK_DGELQF=DUM(1) + * Compute space needed for DORGLQ +- CALL DORGLQ( N, N, M, VT, LDVT, DUM(1), DUM(1), -1, IERR ) ++ CALL DORGLQ( N, N, M, DUM(1), N, DUM(1), DUM(1), -1, IERR ) + LWORK_DORGLQ_N=DUM(1) + CALL DORGLQ( M, N, M, A, LDA, DUM(1), DUM(1), -1, IERR ) + LWORK_DORGLQ_M=DUM(1) |