dnl Copyright (C) 2007-2023 CEA, EDF, OPEN CASCADE dnl dnl Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, dnl CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS dnl dnl This library is free software; you can redistribute it and/or dnl modify it under the terms of the GNU Lesser General Public dnl License as published by the Free Software Foundation; either dnl version 2.1 of the License, or (at your option) any later version. dnl dnl This library is distributed in the hope that it will be useful, dnl but WITHOUT ANY WARRANTY; without even the implied warranty of dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU dnl Lesser General Public License for more details. dnl dnl You should have received a copy of the GNU Lesser General Public dnl License along with this library; if not, write to the Free Software dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA dnl dnl See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com dnl dnl------------------------------------------------------------ dnl Check availability of Salome binary distribution dnl Author : Marc Tajchman (CEA, 2002) dnl------------------------------------------------------------ dnl AC_DEFUN([CHECK_SALOME],[ AC_CHECKING(for Salome) Salome_ok=no AC_ARG_WITH(salome, --with-salome=DIR root directory path of SALOME installation, SALOME_DIR="$withval",SALOME_DIR="") if test "x$SALOME_DIR" = "x" ; then # no --with-salome-dir option used if test "x$SALOME_ROOT_DIR" != "x" ; then # SALOME_ROOT_DIR environment variable defined SALOME_DIR=$SALOME_ROOT_DIR else # search Salome binaries in PATH variable AC_PATH_PROG(TEMP, libMEDMEM_Swig.py) if test "x$TEMP" != "x" ; then SALOME_BIN_DIR=`dirname $TEMP` SALOME_DIR=`dirname $SALOME_BIN_DIR` fi fi # fi if test -f ${SALOME_DIR}/bin/libMEDMEM_Swig.py ; then Salome_ok=yes AC_MSG_RESULT(Using Salome distribution in ${SALOME_DIR}) if test "x$SALOME_ROOT_DIR" = "x" ; then SALOME_ROOT_DIR=${SALOME_DIR} fi if test "x$SALOME_SITE_DIR" = "x" ; then SALOME_SITE_DIR=${SALOME_ROOT_DIR} fi AC_SUBST(SALOME_ROOT_DIR) AC_SUBST(SALOME_SITE_DIR) else AC_MSG_WARN("Cannot find compiled Salome distribution") fi AC_MSG_RESULT(for Salome: $Salome_ok) ])dnl