Jon,

> Thanks for the fix.  One thing though, I do have the latest svn
> revision, but still had to comment out the lines in utilities.h.

The relevant lines in utilities.h are these:
--------------------------
#ifdef DEAL_II_COMPILER_SUPPORTS_MPI
#include <mpi.h>
#else
typedef int MPI_Comm;
#endif
-------------------------
Can you check in base/include/base/config.h whether 
DEAL_II_COMPILER_SUPPORTS_MPI is set? It's a flag that is determined when 
you run ./configure. If not, the preprocessor will choose the #else 
branch, but then you will have to figure out how it may happen that if 
your compiler doesn't support MPI that it still has included <mpi.h> in a 
different file. Do you compile some of your project files with a compiler 
different than the one you use to compile the library?

Best
 W.

-------------------------------------------------------------------------
Wolfgang Bangerth                email:            [EMAIL PROTECTED]
                                 www: http://www.math.tamu.edu/~bangerth/


_______________________________________________

Reply via email to