1 dnl Copyright (C) 2005-2022 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 # Check availability of SIERPINSKY binary distribution
22 # Author : Marc Tajchman (CEA, 2002)
23 #------------------------------------------------------------
25 AC_DEFUN([CHECK_SIERPINSKY],[
27 AC_CHECKING(for Sierpinsky)
32 --with-sierpinsky=DIR root directory path of SIERPINSKY build or installation,
33 SIERPINSKY_DIR="$withval",SIERPINSKY_DIR="")
35 if test "x$SIERPINSKY_DIR" = "x" ; then
37 # no --with-gui-dir option used
39 if test "x$SIERPINSKY_ROOT_DIR" != "x" ; then
41 # SALOME_ROOT_DIR environment variable defined
42 SIERPINSKY_DIR=$SIERPINSKY_ROOT_DIR
46 # search Salome binaries in PATH variable
47 AC_PATH_PROG(TEMP, libSIERPINSKY.so)
48 if test "x$TEMP" != "x" ; then
49 SIERPINSKY_DIR=`dirname $TEMP`
56 if test -f ${SIERPINSKY_DIR}/lib${LIB_LOCATION_SUFFIX}/salome/libSIERPINSKY.so ; then
58 AC_MSG_RESULT(Using SIERPINSKY module distribution in ${SIERPINSKY_DIR})
60 if test "x$SIERPINSKY_ROOT_DIR" == "x" ; then
61 SIERPINSKY_ROOT_DIR=${SIERPINSKY_DIR}
64 SIERPINSKY_LDFLAGS=-L${SIERPINSKY_ROOT_DIR}/lib${LIB_LOCATION_SUFFIX}/salome
65 SIERPINSKY_CXXFLAGS=-I${SIERPINSKY_ROOT_DIR}/include/salome
67 AC_SUBST(SIERPINSKY_ROOT_DIR)
68 AC_SUBST(SIERPINSKY_LDFLAGS)
69 AC_SUBST(SIERPINSKY_CXXFLAGS)
72 AC_MSG_WARN("Cannot find compiled SIERPINSKY module distribution")
75 AC_MSG_RESULT(for SIERPINSKY: $Sierpinsky_ok)