Salome HOME
Update copyrights 2014.
[modules/med.git] / adm_local_without_kernel / unix / config_files / check_mpich.m4
1 dnl Copyright (C) 2007-2014  CEA/DEN, EDF R&D, OPEN CASCADE
2 dnl
3 dnl This library is free software; you can redistribute it and/or
4 dnl modify it under the terms of the GNU Lesser General Public
5 dnl License as published by the Free Software Foundation; either
6 dnl version 2.1 of the License, or (at your option) any later version.
7 dnl
8 dnl This library is distributed in the hope that it will be useful,
9 dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
10 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 dnl Lesser General Public License for more details.
12 dnl
13 dnl You should have received a copy of the GNU Lesser General Public
14 dnl License along with this library; if not, write to the Free Software
15 dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 dnl
17 dnl See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 dnl
19
20 AC_DEFUN([CHECK_MPICH],[
21
22 AC_REQUIRE([AC_PROG_CC])dnl
23
24 AC_ARG_WITH(mpich,
25   [AC_HELP_STRING([--with-mpich=DIR],[root directory path of MPICH installation])],
26   WITHMPICH="yes",WITHMPICH="no")
27
28 MPI_INCLUDES=""
29 MPI_LIBS=""
30 if test "$WITHMPICH" = yes; then
31
32   MPIREQUESTED="yes"
33   echo
34   echo ---------------------------------------------
35   echo testing mpich
36   echo ---------------------------------------------
37   echo
38   MPICH_HOME=$withval
39
40   if test "$MPICH_HOME"; then
41     MPI_INCLUDES="-I$MPICH_HOME/include -DMPICH_IGNORE_CXX_SEEK"
42     if test "x$MPICH_HOME" = "x/usr"
43     then
44       MPI_LIBS=""
45     else
46       MPI_LIBS="-L$MPICH_HOME/lib"
47     fi
48   fi
49
50   CPPFLAGS_old="$CPPFLAGS"
51   CPPFLAGS="$MPI_INCLUDES $CPPFLAGS"
52   AC_CHECK_HEADER(mpi.h,WITHMPICH="yes",WITHMPICH="no")
53   CPPFLAGS="$CPPFLAGS_old"
54
55   if test "$WITHMPICH" = "yes";then
56      #MPI_LIBS="$MPI_LIBS -lmpich -lpmpich"
57      MPI_LIBS="$MPI_LIBS -lmpich"
58   fi
59
60   if test "$WITHMPICH" = "yes";then
61     LDFLAGS_old="$LDFLAGS"
62     LDFLAGS="$MPI_LIBS $LDFLAGS"
63     AC_CHECK_LIB(mpich,MPI_Init,WITHMPICH="yes",WITHMPICH="no")
64     AC_CHECK_LIB(mpich,MPI_Publish_name,WITHMPI2="yes",WITHMPI2="no")
65     LDFLAGS="$LDFLAGS_old"
66   fi
67
68   if test "$WITHMPICH" = "yes";then
69      WITHMPI="yes"
70      mpi_ok=yes
71   else
72      mpi_ok=no
73   fi
74
75 fi
76
77 ])dnl