From: maier Date: Fri, 28 Sep 2012 12:37:11 +0000 (+0000) Subject: Remove direct "support" for BLAS. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b216a1c2e27706f19b593f4f295f5bf0cc310ebf;p=dealii-svn.git Remove direct "support" for BLAS. We don't use blas directly. So remove the dangling config.h.in defines and macros in ./include/base/* git-svn-id: https://svn.dealii.org/branches/branch_cmake@26831 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/include/deal.II/base/config.h.in b/deal.II/include/deal.II/base/config.h.in index 61ba163bc7..e9aa873828 100644 --- a/deal.II/include/deal.II/base/config.h.in +++ b/deal.II/include/deal.II/base/config.h.in @@ -59,14 +59,6 @@ #cmakedefine DEAL_II_USE_ARPACK -/*************************************** - * Configured in configure_blas.cmake: * - ***************************************/ - -/* Defined if deal.II was configured with BLAS support */ -#cmakedefine HAVE_LIBBLAS - - /************************************************* * Configured in configure_functionparser.cmake: * *************************************************/ diff --git a/deal.II/include/deal.II/base/exceptions.h b/deal.II/include/deal.II/base/exceptions.h index 9d1fe27291..3bf24d05c6 100644 --- a/deal.II/include/deal.II/base/exceptions.h +++ b/deal.II/include/deal.II/base/exceptions.h @@ -948,14 +948,6 @@ namespace StandardExceptions */ DeclException0 (ExcScalarAssignmentOnlyForZeroValue); - /** - * This function requires the BLAS - * library. Please reconfigure - * using the option - * --with-blas and check - * if it is actually included. - */ - DeclException0 (ExcNeedsBLAS); /** * This function requires the LAPACK @@ -1061,15 +1053,6 @@ namespace StandardExceptions * since we cannot have ifdefs in macros. */ -/** - * Assert support for the BLAS library - */ -#ifdef HAVE_LIBBLAS -# define AssertBLAS {} -#else -# define AssertBLAS Assert(false, ExcNeedsBLAS()) -#endif - /** * Assert support for the LAPACK library