// $Id$
// Version: $Name$
//
-// Copyright (C) 2010, 2011, 2012 by the deal.II authors
+// Copyright (C) 2010, 2011, 2012, 2013 by the deal.II authors
//
// This file is subject to QPL and may not be distributed
// without copyright and license information. Please refer
//
//----------------------------------------------------------------------
+/*
+ * TODO: Implement a report line for Arpack, Boost and P4est
+ * - 2013, maier
+ */
#include <deal.II/base/config.h>
#include <iostream>
int main()
{
-#ifdef HAVE_LIBBLAS
- std::cout << "dealii-feature: BLAS=yes" << std::endl;
-#endif
-
#ifdef DEAL_II_WITH_LAPACK
+ std::cout << "dealii-feature: BLAS=yes" << std::endl;
std::cout << "dealii-feature: LAPACK=yes" << std::endl;
#endif
# endif
#endif
+#ifdef DEAL_II_WITH_THREADS
+ std::cout << "dealii-feature: multithreading=yes" << std::endl;
+#else
+ std::cout << "dealii-feature: multithreading=no" << std::endl;
+#endif
+
#ifdef DEAL_II_WITH_TRILINOS
# ifdef TRILINOS_VERSION_STRING
std::cout << "dealii-feature: Trilinos=" << TRILINOS_VERSION_STRING << std::endl;