1 dnl Copyright (C) 2007-2021 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 SMesh binary distribution
25 # Author : Nicolas REJNERI (OPEN CASCADE, 2003)
28 AC_DEFUN([CHECK_SMESH],[
30 AC_CHECKING(for SMesh)
38 [ --with-smesh=DIR root directory path of SMESH installation ],
39 SMESH_DIR="$withval",SMESH_DIR="")
41 if test "x$SMESH_DIR" == "x" ; then
43 # no --with-smesh option used
45 if test "x$SMESH_ROOT_DIR" != "x" ; then
47 # SMESH_ROOT_DIR environment variable defined
48 SMESH_DIR=$SMESH_ROOT_DIR
52 # search SMESH binaries in PATH variable
53 #CCRTAC_PATH_PROG(TEMP, libSMESH_Swig.py)
54 #AC_PATH_PROG(TEMP, MED_Test)
55 AC_PATH_PROG(TEMP, smesh.py)
56 if test "x$TEMP" != "x" ; then
57 SMESH_BIN_DIR=`dirname $TEMP`
58 SMESH_DIR=`dirname $SMESH_BIN_DIR`
65 #CCRTif test -f ${SMESH_DIR}/bin/salome/libSMESH_Swig.py ; then
66 #if test -f ${SMESH_DIR}/bin/salome/MED_Test ; then
67 if test -f ${SMESH_DIR}/bin/salome/SMESH_test.py ; then
69 AC_MSG_RESULT(Using SMesh module distribution in ${SMESH_DIR})
71 if test "x$SMESH_ROOT_DIR" == "x" ; then
72 SMESH_ROOT_DIR=${SMESH_DIR}
74 AC_SUBST(SMESH_ROOT_DIR)
76 SMESH_LDFLAGS=-L${SMESH_DIR}/lib${LIB_LOCATION_SUFFIX}/salome
77 SMESH_CXXFLAGS=-I${SMESH_DIR}/include/salome
79 AC_SUBST(SMESH_LDFLAGS)
80 AC_SUBST(SMESH_CXXFLAGS)
83 AC_MSG_WARN("Cannot find compiled SMesh module distribution")
86 AC_MSG_RESULT(for SMesh: $SMesh_ok)