diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2002-11-24 03:58:09 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2002-11-24 03:58:09 (GMT) |
commit | b4b718b9297c479a3d1177209dcf1214d7de27a4 (patch) | |
tree | 5da67f34d5d73dcf3fcf1dec261fe80f5aecbdb1 | |
parent | 974a06839512ec96c88bff67fdf0d0519a52148c (diff) | |
download | hdf5-b4b718b9297c479a3d1177209dcf1214d7de27a4.zip hdf5-b4b718b9297c479a3d1177209dcf1214d7de27a4.tar.gz hdf5-b4b718b9297c479a3d1177209dcf1214d7de27a4.tar.bz2 |
[svn-r6134] Purpose:
Cleanup
Description:
Removed the option (--enable-parallel=mpich). It did not work.
Platforms tested:
Tested h5committest {arabica (fortran), eirene (fortran, C++)
modi4 (parallel, fortran)}? All passed.
-rwxr-xr-x | configure | 78 | ||||
-rw-r--r-- | configure.in | 17 |
2 files changed, 0 insertions, 95 deletions
@@ -29921,84 +29921,6 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ;; - X-mpich) - echo "$as_me:$LINENO: result: mpich" >&5 -echo "${ECHO_T}mpich" >&6 - { echo "$as_me:$LINENO: WARNING: *** Why aren't you using an mpicc compiler? ***" >&5 -echo "$as_me: WARNING: *** Why aren't you using an mpicc compiler? ***" >&2;} - - PARALLEL=mpich - -echo "$as_me:$LINENO: checking for MPI_Init in -lmpich" >&5 -echo $ECHO_N "checking for MPI_Init in -lmpich... $ECHO_C" >&6 -if test "${ac_cv_lib_mpich_MPI_Init+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lmpich $LIBS" -cat >conftest.$ac_ext <<_ACEOF -#line $LINENO "configure" -#include "confdefs.h" - -/* Override any gcc2 internal prototype to avoid an error. */ -#ifdef __cplusplus -extern "C" -#endif -/* We use char because int might match the return type of a gcc2 - builtin and then its argument prototype would still apply. */ -char MPI_Init (); -#ifdef F77_DUMMY_MAIN -# ifdef __cplusplus - extern "C" -# endif - int F77_DUMMY_MAIN() { return 1; } -#endif -int -main () -{ -MPI_Init (); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 - (eval $ac_link) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_lib_mpich_MPI_Init=yes -else - echo "$as_me: failed program was:" >&5 -cat conftest.$ac_ext >&5 -ac_cv_lib_mpich_MPI_Init=no -fi -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -echo "$as_me:$LINENO: result: $ac_cv_lib_mpich_MPI_Init" >&5 -echo "${ECHO_T}$ac_cv_lib_mpich_MPI_Init" >&6 -if test $ac_cv_lib_mpich_MPI_Init = yes; then - cat >>confdefs.h <<_ACEOF -#define HAVE_LIBMPICH 1 -_ACEOF - - LIBS="-lmpich $LIBS" - -else - { { echo "$as_me:$LINENO: error: no mpich library" >&5 -echo "$as_me: error: no mpich library" >&2;} - { (exit 1); exit 1; }; } -fi - - ;; - *) echo "$as_me:$LINENO: result: error" >&5 echo "${ECHO_T}error" >&6 diff --git a/configure.in b/configure.in index 41b02b3..74562e0 100644 --- a/configure.in +++ b/configure.in @@ -1631,23 +1631,6 @@ case "X-$enable_parallel" in fi ;; - X-mpich) - dnl For normal mpich installation the compiler, mpicc, should know - dnl where the MPI and MPI-IO header files are located and know which - dnl extra libraries need to be linked and will supply appropriate - dnl flags to the underlying compiler. - AC_MSG_RESULT(mpich) - AC_MSG_WARN(*** Why aren't you using an mpicc compiler? ***) - - dnl Apparently mpicc isn't installed correctly so configure must search - dnl for the header files and libraries. Actually we only have to search - dnl for the libraries in order to get the onto the link line, the user - dnl will have already told us about the locations. Fail if something - dnl is missing. - PARALLEL=mpich - AC_CHECK_LIB(mpich,MPI_Init,,AC_MSG_ERROR(no mpich library)) - ;; - *) AC_MSG_RESULT(error) AC_MSG_ERROR(\'$enable_parallel\' is not a valid parallel search type) |