Salome HOME
8c51926e049f5a880bae5eb476dc0872f531171f
[samples/calculator.git] / adm_local / unix / config_files / check_CALCULATOR.m4
1 dnl Copyright (C) 2007-2020  CEA/DEN, EDF R&D, OPEN CASCADE
2 dnl
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
5 dnl
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.
10 dnl
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.
15 dnl
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
19 dnl
20 dnl See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 dnl
22
23 #  Check availability of CALCULATOR binary distribution
24 #
25 #  Author : Marc Tajchman (CEA, 2002)
26 #------------------------------------------------------------
27
28 AC_DEFUN([CHECK_CALCULATOR],[
29
30 AC_CHECKING(for Calculator)
31
32 Calculator_ok=no
33
34 AC_ARG_WITH(calc,
35             --with-calculator=DIR  root directory path of CALCULATOR build or installation,
36             CALCULATOR_DIR="$withval",CALCULATOR_DIR="")
37
38 if test "x$CALCULATOR_DIR" = "x" ; then
39
40 # no --with-gui-dir option used
41
42   if test "x$CALCULATOR_ROOT_DIR" != "x" ; then
43
44     # SALOME_ROOT_DIR environment variable defined
45     CALCULATOR_DIR=$CALCULATOR_ROOT_DIR
46
47   else
48
49     # search Salome binaries in PATH variable
50     AC_PATH_PROG(TEMP, libCALCULATOREngine.so)
51     if test "x$TEMP" != "x" ; then
52       CALCULATOR_DIR=`dirname $TEMP`
53     fi
54
55   fi
56
57 fi
58
59 if test -f ${CALCULATOR_DIR}/lib/salome/libCALCULATOREngine.so  ; then
60   Calculator_ok=yes
61   AC_MSG_RESULT(Using CALCULATOR module distribution in ${CALCULATOR_DIR})
62
63   if test "x$CALCULATOR_ROOT_DIR" == "x" ; then
64     CALCULATOR_ROOT_DIR=${CALCULATOR_DIR}
65   fi
66   AC_SUBST(CALCULATOR_ROOT_DIR)
67 else
68   AC_MSG_WARN("Cannot find compiled CALCULATOR module distribution")
69 fi
70   
71 AC_MSG_RESULT(for CALCULATOR: $Calculator_ok)
72  
73 ])dnl
74