From: David Wells Date: Sat, 28 Feb 2015 16:09:42 +0000 (-0500) Subject: Remove use of `DEAL_II_COMPILER_SUPPORTS_MPI`. X-Git-Tag: v8.3.0-rc1~405^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7f5821cd02b687ce8b645aac4b4946e9a9ea07a1;p=dealii.git Remove use of `DEAL_II_COMPILER_SUPPORTS_MPI`. This macro was removed in favor of `DEAL_II_WITH_MPI` in early 2015; see `doc/news/changes.h` for more information. --- diff --git a/source/base/data_out_base.cc b/source/base/data_out_base.cc index 5749190fb7..cd72d947a7 100644 --- a/source/base/data_out_base.cc +++ b/source/base/data_out_base.cc @@ -7196,7 +7196,7 @@ void DataOutBase::write_hdf5_parallel (const std::vector > & (void)comm; AssertThrow(false, ExcMessage ("HDF5 support is disabled.")); #else -#ifndef DEAL_II_COMPILER_SUPPORTS_MPI +#ifndef DEAL_II_WITH_MPI // verify that there are indeed // patches to be written out. most // of the times, people just forget