1 dnl Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE
3 dnl Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 dnl CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 dnl This library is free software; you can redistribute it and/or
7 dnl modify it under the terms of the GNU Lesser General Public
8 dnl License as published by the Free Software Foundation; either
9 dnl version 2.1 of the License, or (at your option) any later version.
11 dnl This library is distributed in the hope that it will be useful,
12 dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
13 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 dnl Lesser General Public License for more details.
16 dnl You should have received a copy of the GNU Lesser General Public
17 dnl License along with this library; if not, write to the Free Software
18 dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 dnl See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 # Check availability of MEDCOUPLING binary distribution
25 # Author : Roman NIKOLAEV (OPEN CASCADE, 2016)
28 AC_DEFUN([CHECK_MEDCOUPLING],[
29 AC_REQUIRE([AC_LINKER_OPTIONS])dnl
31 AC_CHECKING(for MEDCOUPLING)
35 MEDCOUPLING_LDFLAGS=""
36 MEDCOUPLING_CXXFLAGS=""
38 AC_ARG_WITH(medcoupling,
39 [ --with-medcoupling=DIR root directory path of MEDCOUPLING installation ],
40 MEDCOUPLING_DIR="$withval",MEDCOUPLING_DIR="")
42 if test "x${MEDCOUPLING_DIR}" == "x" ; then
43 AC_MSG_RESULT(for \${MEDCOUPLING_ROOT_DIR}: ${MEDCOUPLING_ROOT_DIR})
45 # --with-medcoupling option is not used
46 if test "x${MEDCOUPLING_ROOT_DIR}" != "x" ; then
47 # MEDCOUPLING_ROOT_DIR environment variable defined
48 MEDCOUPLING_DIR=${MEDCOUPLING_ROOT_DIR}
53 if test -f ${MEDCOUPLING_DIR}/include/InterpKernelValue.hxx ; then
54 AC_MSG_RESULT(Using MEDCOUPLING module distribution in ${MEDCOUPLING_DIR})
57 AC_SUBST(MEDCOUPLING_ROOT_DIR)
59 MEDCOUPLING_LDFLAGS=-L${MEDCOUPLING_DIR}/lib${LIB_LOCATION_SUFFIX}
60 MED_CXXFLAGS=-I${MEDCOUPLING_DIR}/include
62 AC_SUBST(MEDCOUPLING_LDFLAGS)
63 AC_SUBST(MEDCOUPLING_CXXFLAGS)
66 AC_MSG_WARN("Cannot find MCOUPLING module sources")
69 AC_MSG_RESULT(for MEDCOUPLING: $MEDCOUPLING_ok)