From e5e1764fa14432f03fc6b4941ca566552bd94326 Mon Sep 17 00:00:00 2001 From: willems Date: Thu, 8 Apr 2010 15:22:45 +0000 Subject: [PATCH] Checks for availability of LAPACK functions dsygv and ssygv included git-svn-id: https://svn.dealii.org/trunk@20964 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/base/include/base/config.h.in | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/deal.II/base/include/base/config.h.in b/deal.II/base/include/base/config.h.in index 522981ad28..5ca2814058 100644 --- a/deal.II/base/include/base/config.h.in +++ b/deal.II/base/include/base/config.h.in @@ -308,6 +308,9 @@ /* Define to 1 if you have the `dstev_' function. */ #undef HAVE_DSTEV_ +/* Define to 1 if you have the `dsygv_' function. */ +#undef HAVE_DSYGV_ + /* Define to 1 if you have the `dtrtrs_' function. */ #undef HAVE_DTRTRS_ @@ -430,6 +433,9 @@ /* Define to 1 if you have the `sstev_' function. */ #undef HAVE_SSTEV_ +/* Define to 1 if you have the `ssygv_' function. */ +#undef HAVE_SSYGV_ + /* Define to 1 if you have the header file. */ #undef HAVE_STDINT_H @@ -598,15 +604,15 @@ */ #define DEAL_II_PETSC_VERSION_LT(major,minor,subminor) \ ((PETSC_VERSION_MAJOR * 10000 + \ - PETSC_VERSION_MINOR * 100 + \ - PETSC_VERSION_SUBMINOR) \ + PETSC_VERSION_MINOR * 100 + \ + PETSC_VERSION_SUBMINOR) \ < \ (major)*10000 + (minor)*100 + (subminor)) #define DEAL_II_PETSC_VERSION_GTE(major,minor,subminor) \ ((PETSC_VERSION_MAJOR * 10000 + \ - PETSC_VERSION_MINOR * 100 + \ - PETSC_VERSION_SUBMINOR) \ + PETSC_VERSION_MINOR * 100 + \ + PETSC_VERSION_SUBMINOR) \ >= \ (major)*10000 + (minor)*100 + (subminor)) -- 2.39.5