From: Matthias Maier Date: Mon, 12 Jan 2015 12:04:22 +0000 (+0100) Subject: add a changes.h entry X-Git-Tag: v8.3.0-rc1~554^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F420%2Fhead;p=dealii.git add a changes.h entry --- diff --git a/doc/news/changes.h b/doc/news/changes.h index 20b9722f61..fcd8d1e3e1 100644 --- a/doc/news/changes.h +++ b/doc/news/changes.h @@ -38,6 +38,25 @@ inconvenience this causes.

    +
  1. Removed: The following compatibility definitions were removed from + include/deal.II/base/config.h.in (replacement in brackets): + - DEAL_II_CAN_USE_CXX11 (new: DEAL_II_WITH_CXX11) + - DEAL_II_CAN_USE_CXX1X (new: DEAL_II_WITH_CXX11) + - DEAL_II_COMPILER_SUPPORTS_MPI (new: DEAL_II_WITH_MPI) + - DEAL_II_MAJOR (new: DEAL_II_VERSION_MAJOR) + - DEAL_II_MINOR (new: DEAL_II_VERSION_MINOR) + - DEAL_II_USE_ARPACK (new: DEAL_II_WITH_ARPACK) + - DEAL_II_USE_CXX11 (new: DEAL_II_WITH_CXX11) + - DEAL_II_USE_METIS (new: DEAL_II_WITH_METIS) + - DEAL_II_USE_MT (new: DEAL_II_WITH_THREADS) + - DEAL_II_USE_P4EST (new: DEAL_II_WITH_P4EST) + - DEAL_II_USE_PETSC (new: DEAL_II_WITH_PETSC) + - DEAL_II_USE_SLEPC (new: DEAL_II_WITH_SLEPC) + - DEAL_II_USE_TRILINOS (new: DEAL_II_WITH_TRILINOS) +
    + (Matthias Maier, 2015/01/12) +
  2. +
  3. Removed: The direct Mumps interface through SparseDirectMUMPS has been removed. The MUMPS solver is still available through the Trilinos or PETSc interfaces. Alternatively,