Salome HOME
Merge from V6_main 01/04/2013
[samples/atomgen.git] / adm_local / unix / config_files / check_ATOMGEN.m4
1 # Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 AC_DEFUN([CHECK_ATOMGEN],[
21
22 AC_CHECKING(for ATOMGEN)
23
24 ATOMGEN_ok=no
25
26 AC_ARG_WITH(atomgen,
27             [  --with-atomgen=DIR root directory path of ATOMGEN module installation ],
28             ATOMGEN_DIR="$withval",ATOMGEN_DIR="")
29
30 if test "x$ATOMGEN_DIR" == "x" ; then
31    # no --with-atomgen-dir option used
32    if test "x$ATOMGEN_ROOT_DIR" != "x" ; then
33       # ATOMGEN_ROOT_DIR environment variable defined
34       ATOMGEN_DIR=$ATOMGEN_ROOT_DIR
35    fi
36 fi
37
38 if test -f ${ATOMGEN_DIR}/bin/salome/ATOMGEN.py ; then
39    ATOMGEN_ok=yes
40    AC_MSG_RESULT(Using ATOMGEN module distribution in ${ATOMGEN_DIR})
41
42    if test "x$ATOMGEN_ROOT_DIR" == "x" ; then
43       ATOMGEN_ROOT_DIR=${ATOMGEN_DIR}
44    fi
45    AC_SUBST(ATOMGEN_ROOT_DIR)
46 else
47    AC_MSG_WARN("Cannot find ATOMGEN module sources")
48 fi
49   
50 AC_MSG_RESULT(for ATOMGEN: $ATOMGEN_ok)
51  
52 ])dnl
53