diff options
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 7ad5f34..daa070f 100644 --- a/configure.in +++ b/configure.in @@ -488,6 +488,7 @@ AC_ARG_ENABLE(parallel, AC_MSG_CHECKING(for parallel support); AC_SUBST(RUNSERIAL) AC_SUBST(RUNPARALLEL) +AC_SUBST(TESTPARALLEL) if test "mpicc" = "$CC_BASENAME" -a "X-" = "X-$PARALLEL"; then PARALLEL=mpio @@ -508,8 +509,8 @@ case "X-$PARALLEL" in # list also so we don't have to ifdef out the whole file. AC_MSG_RESULT(mpio) AC_DEFINE(HAVE_PARALLEL) - AC_CHECK_LIB(mpi,main) dnl Replace `main' with some function - AC_CHECK_LIB(mpio,main) dnl Replace `main' with some function + AC_CHECK_LIB(mpi,MPI_Init) + AC_CHECK_LIB(mpio,MPI_File_open) if test "X-" = "X-$RUNSERIAL" -o "X-none" = "X-$RUNSERIAL"; then RUNSERIAL= fi @@ -518,6 +519,11 @@ case "X-$PARALLEL" in elif test "X-none" = "X-$RUNPARALLEL"; then RUNPARALLEL= fi + if test "X-" = "X-$TESTPARALLEL"; then + TESTPARALLEL="testpar" + elif test "X-none" = "X-$TESTPARALLEL"; then + TESTPARALLEL= + fi ;; *) |