mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
cdb3d6ec6d
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
26 lines
855 B
Diff
26 lines
855 B
Diff
diff --git a/ax_blas.m4 b/ax_blas.m4
|
|
--- a/ax_blas.m4
|
|
+++ b/ax_blas.m4
|
|
@@ -117,12 +117,16 @@
|
|
# BLAS in ATLAS library? (http://math-atlas.sourceforge.net/)
|
|
if test $ax_blas_ok = no; then
|
|
AC_CHECK_LIB(atlas, ATL_xerbla,
|
|
- [AC_CHECK_LIB(f77blas, $sgemm,
|
|
- [AC_CHECK_LIB(cblas, cblas_dgemm,
|
|
- [ax_blas_ok=yes
|
|
- BLAS_LIBS="-lcblas -lf77blas -latlas"],
|
|
- [], [-lf77blas -latlas])],
|
|
- [], [-latlas])])
|
|
+ [AC_CHECK_LIB(ptf77blas, $sgemm,
|
|
+ [AC_CHECK_LIB(ptcblas, cblas_dgemm,
|
|
+ [ax_blas_ok=yes; BLAS_LIBS="-lptcblas -lptf77blas -latlas"],,
|
|
+ [-lptf77blas -latlas])],
|
|
+ [AC_CHECK_LIB(f77blas, $sgemm,
|
|
+ [AC_CHECK_LIB(cblas, cblas_dgemm,
|
|
+ [ax_blas_ok=yes; BLAS_LIBS="-lcblas -lf77blas -latlas"],,
|
|
+ [-lf77blas -latlas])],,
|
|
+ [-latlas])],
|
|
+ [-latlas])])
|
|
fi
|
|
|
|
# BLAS in PhiPACK libraries? (requires generic BLAS lib, too)
|