Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-chemistry/apbs/files: apbs-1.3-blas.patch
Date: Mon, 04 Jul 2011 09:27:46
Message-Id: 20110704092737.93A442004B@flycatcher.gentoo.org
1 jlec 11/07/04 09:27:37
2
3 Added: apbs-1.3-blas.patch
4 Log:
5 Fix for blas detection
6
7 (Portage version: 2.2.0_alpha43/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 sci-chemistry/apbs/files/apbs-1.3-blas.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/apbs/files/apbs-1.3-blas.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/apbs/files/apbs-1.3-blas.patch?rev=1.1&content-type=text/plain
14
15 Index: apbs-1.3-blas.patch
16 ===================================================================
17 configure.ac | 2 +-
18 1 files changed, 1 insertions(+), 1 deletions(-)
19
20 diff --git a/configure.ac b/configure.ac
21 index 6020fbf..65dd770 100644
22 --- a/configure.ac
23 +++ b/configure.ac
24 @@ -1021,7 +1021,7 @@ if test x"$with_blas" != "xno" -a -n "$with_blas"; then
25 LDFLAGS_SAVE=${LDFLAGS};
26 CPPFLAGS_SAVE=${CPPFLAGS};
27 LDFLAGS="-L${maloc_lib_path} ${blas_lib}";
28 - AC_CHECK_LIB(${blas_name},dscal,
29 + AC_CHECK_LIB(m,dscal,
30 [blas_found="yes"],
31 [blas_found=""],
32 [${blas_lib} ${socket_lib} ${nsl_lib} ${math_lib}])