Salome HOME
Copyright update: 2016
[samples/atomsolv.git] / adm_local / unix / config_files / check_ATOMSOLV.m4
1 # Copyright (C) 2007-2016  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, or (at your option) any later version.
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_ATOMSOLV],[
21
22 AC_CHECKING(for ATOMSOLV)
23
24 ATOMSOLV_ok=no
25
26 AC_ARG_WITH(atomic,
27             [  --with-atomic=DIR root directory path of ATOMSOLV module installation ],
28             ATOMSOLV_DIR="$withval",ATOMSOLV_DIR="")
29
30 if test "x$ATOMSOLV_DIR" == "x" ; then
31    # no --with-atomic-dir option used
32    if test "x$ATOMSOLV_ROOT_DIR" != "x" ; then
33       # ATOMSOLV_ROOT_DIR environment variable defined
34       ATOMSOLV_DIR=$ATOMSOLV_ROOT_DIR
35    fi
36 fi
37
38 if test -f ${ATOMSOLV_DIR}/lib/salome/libATOMSOLV.so ; then
39    ATOMSOLV_ok=yes
40    AC_MSG_RESULT(Using ATOMSOLV module distribution in ${ATOMSOLV_DIR})
41
42    if test "x$ATOMSOLV_ROOT_DIR" == "x" ; then
43       ATOMSOLV_ROOT_DIR=${ATOMSOLV_DIR}
44    fi
45    AC_SUBST(ATOMSOLV_ROOT_DIR)
46 else
47    AC_MSG_WARN("Cannot find ATOMSOLV module sources")
48 fi
49   
50 AC_MSG_RESULT(for ATOMSOLV: $ATOMSOLV_ok)
51  
52 ])dnl
53