Salome HOME
Documentation and source correction and improvements for DFO
[modules/adao.git] / adm_local / check_eficas.m4
1 dnl  Copyright (C) 2008-2015  EDF R&D
2 dnl
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.
7 dnl
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.
12 dnl
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
16 dnl
17 dnl  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 dnl
19 dnl  Author: AndrĂ© Ribes, andre.ribes@edf.fr, EDF R&D
20
21 AC_DEFUN([CHECK_EFICAS],[
22
23 AC_CHECKING(for Eficas)
24
25 eficas_ok=no
26
27 AC_ARG_WITH(eficas,
28             [  --with-eficas=DIR               root directory path of Eficas installation],
29                EFICAS_DIR=$withval,EFICAS_DIR="")
30
31 if test "x$EFICAS_DIR" = "x" ; then
32
33   # no --with-eficas option used
34
35   if test "x$EFICAS_ROOT" != "x" ; then
36
37   #EFICAS_ROOT environment variable defined
38   EFICAS_DIR=$EFICAS_ROOT
39
40   else
41     AC_MSG_WARN("EFICAS_ROOT is not defined")
42   fi
43 fi
44
45 if test "x$EFICAS_DIR" != "x" ; then
46   eficas_ok=yes
47   AC_SUBST(EFICAS_DIR)
48 fi
49
50 AC_MSG_RESULT(for Eficas: $eficas_ok)
51
52 ])dnl
53