1 dnl Copyright (C) 2007-2022 CEA/DEN, EDF R&D, OPEN CASCADE
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.
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.
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
17 dnl See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 AC_DEFUN([CHECK_OPENMPI],[
22 AC_HELP_STRING([--with-openmpi=DIR],[root directory path of openmpi installation]),
23 WITHOPENMPI="yes",WITHOPENMPI="no")
29 if test "$WITHOPENMPI" = yes; then
33 if test "$OPENMPI_HOME"; then
34 if test -f "${OPENMPI_HOME}/include/mpi.h"; then
35 MPI_INCLUDES="-I${OPENMPI_HOME}/include"
37 MPI_INCLUDES=`$OPENMPI_HOME/bin/mpicxx --showme:compile`
39 dnl Small modification for native debian-based distributions
40 if test "$OPENMPI_HOME" = "/usr/lib/openmpi"; then
41 MPI_LIBS=`mpicxx --showme:link`
43 MPI_LIBS=`$OPENMPI_HOME/bin/mpicxx --showme:link`
47 CPPFLAGS_old="$CPPFLAGS"
48 CPPFLAGS="$MPI_INCLUDES $CPPFLAGS"
49 AC_CHECK_HEADER(mpi.h,WITHOPENMPI="yes",WITHOPENMPI="no")
50 CPPFLAGS="$CPPFLAGS_old"
53 LIBS="-L${OPENMPI_HOME}/lib $LIBS"
54 AC_CHECK_LIB(mpi,MPI_Publish_name,WITHMPI2="yes",WITHMPI2="no")
57 AC_MSG_CHECKING(for openmpi)
58 if test "$WITHOPENMPI" = "yes";then
62 CPPFLAGS="-DOMPI_IGNORE_CXX_SEEK -DWITHOPENMPI $CPPFLAGS"