Skip to content
Snippets Groups Projects
Commit e124572c authored by Christian Engwer's avatar Christian Engwer
Browse files

patch to make mvapich 1.2.* happy

[[Imported from SVN: r5587]]
parent 6c16248a
No related branches found
No related tags found
No related merge requests found
......@@ -214,6 +214,14 @@ test_mvapich2() {
cat >conftest.c <<_EOF
#define _OSU_MVAPICH_
#include <mpi.h>
/* MVAPICH2_VERSION is only defined for MVAPICH2 1.4+
* MVAPICH_VERSION is only defined for MVAPICH2 1.2.*
* We can thus fall back to MVAPICH_VERSION if MVAPICH2_VERSION
* is not defined.
*/
#ifndef MVAPICH2_VERSION
#define MVAPICH2_VERSION MVAPICH_VERSION
#endif
#include <stdio.h>
int main() { printf("%s\n",MVAPICH2_VERSION); return 0; }
_EOF
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment