Revision | 1c0ec065b95abd5d9abbf9bf187e1a3e01f98e60 (tree) |
---|---|
Zeit | 2013-01-02 01:26:52 |
Autor | Katsuhiko Nishimra <ktns.87@gmai...> |
Commiter | Katsuhiko Nishimra |
Fix bug in detection of C interface functions for BLAS. #28588
git-svn-id: https://svn.sourceforge.jp/svnroot/molds/branches/automake@1222 1136aad2-a195-0410-b898-f5ea1d11b9d8
@@ -98,12 +98,12 @@ AC_CHECK_FUNCS([dcopy daxpy ddot dgemv dgemm dsymv dsyr], | ||
98 | 98 | [molds_blas_cinterface_found=yes], |
99 | 99 | [molds_blas_cinterface_found=no;break]) |
100 | 100 | |
101 | -AS_IF([test x$molds_lapack_cinterface_found != xyes], | |
101 | +AS_IF([test x$molds_blas_cinterface_found != xyes], | |
102 | 102 | [AC_CHECK_FUNCS([cblas_dcopy cblas_daxpy cblas_ddot cblas_dgemv cblas_dgemm cblas_dsymv cblas_dsyr], |
103 | - [molds_lapack_cinterface_found=yes], | |
104 | - [molds_lapack_cinterface_found=no;break])]) | |
103 | + [molds_blas_cinterface_found=yes], | |
104 | + [molds_blas_cinterface_found=no;break])]) | |
105 | 105 | |
106 | -AS_IF([test x$molds_lapack_cinterface_found != xyes], | |
106 | +AS_IF([test x$molds_blas_cinterface_found != xyes], | |
107 | 107 | [AC_MSG_FAILURE([Cannot find C interface functions of BLAS!])]) |
108 | 108 | |
109 | 109 | dnl Check for LAPACK |