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