Salome HOME
Improving logging when debug is required
[modules/adao.git] / adm_local / check_module_eficas.m4
1 dnl  Copyright (C) 2010-2011  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_MODULE_EFICAS],[
22
23 AC_CHECKING(for Module Eficas)
24
25 module_eficas_ok=no
26
27 AC_ARG_WITH(module-eficas,
28             [  --with-module-eficas=DIR               root directory path of Module Eficas installation],
29                MODULE_EFICAS_DIR=$withval,MODULE_EFICAS_DIR="")
30
31 if test "x$MODULE_EFICAS_DIR" = "x" ; then
32
33   # no --with-module-eficas option used
34
35   if test "x$EFICAS_ROOT_DIR" != "x" ; then
36
37   #EFICAS_ROOT_DIR environment variable defined
38   MODULE_EFICAS_DIR=$EFICAS_ROOT_DIR
39
40   else
41     AC_MSG_WARN("EFICAS_ROOT_DIR is not defined")
42   fi
43 fi
44
45 if test "x$MODULE_EFICAS_DIR" != "x" ; then
46   module_eficas_ok=yes
47 fi
48
49 AC_MSG_RESULT(for Module Eficas: $module_eficas_ok)
50
51 ])dnl
52