@echo "dealii-feature: host=`hostname`"
@echo "dealii-feature: target=$(TARGET)"
@echo "dealii-feature: compiler=$(GXX-VERSION-DETAILED)"
- @echo "dealii-feature: BUILDTESTFLAGS=$(BUILDTESTFLAGS)"
- @echo "dealii-feature: BUILDTESTNOTE=$(BUILDTESTNOTE)"
@echo "dealii-feature: multithreading=$(enable-threads)"
@echo "dealii-feature: shared_libs=$(enable-shared)"
@echo "dealii-feature: parser=$(subst no,,$(enable-parser))"
@echo "dealii-feature: PETSc=$(subst ..,,$(DEAL_II_PETSC_VERSION_MAJOR).$(DEAL_II_PETSC_VERSION_MINOR).$(DEAL_II_PETSC_VERSION_SUBMINOR))"
- @echo "dealii-feature: SLEPc=$(subst no,,$(USE_CONTRIB_SLEPC))"
@echo "dealii-feature: Trilinos=$(subst ..,,$(DEAL_II_TRILINOS_VERSION_MAJOR).$(DEAL_II_TRILINOS_VERSION_MINOR).$(DEAL_II_TRILINOS_VERSION_SUBMINOR))"
- @echo "dealii-feature: MUMPS=$(subst no,,$(USE_CONTRIB_MUMPS))"
@echo "dealii-feature: METIS=$(subst no,,$(USE_CONTRIB_METIS))"
@cd $D/common/scripts ; make report_features && ./report_features
endif
# include <dmumps_c.h>
#endif
+#ifdef DEAL_II_USE_SLEPC
+# include <slepcversion.h>
+#endif
int main()
{
<< UMFPACK_SUBSUB_VERSION << std::endl;
#endif
+#ifdef DEAL_II_USE_MUMPS
+ std::cout << "dealii-feature: MUMPS=yes" << std::endl;
+#endif
+
+#ifdef DEAL_II_USE_SLEPC
+ std::cout << "dealii-feature: SLEPc="
+ << SLEPC_VERSION_MAJOR << '.'
+ << SLEPC_VERSION_MINOR << '.'
+ << SLEPC_VERSION_SUBMINOR << 'p'
+ << SLEPC_VERSION_PATCH << std::endl;
+#endif
+
#if defined(HAVE_HSL_MA27) || defined(HAVE_HSL_MA47)
std::cout << "dealii-feature: HSL=";
#ifdef HAVE_HSL_MA27