Salome HOME
Merge from V6_main 01/04/2013
[samples/atomic.git] / adm_local / unix / config_files / check_ATOMIC.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_ATOMIC],[
21
22 AC_CHECKING(for ATOMIC)
23
24 ATOMIC_ok=no
25
26 AC_ARG_WITH(atomic,
27             [  --with-atomic=DIR root directory path of ATOMIC module installation ],
28             ATOMIC_DIR="$withval",ATOMIC_DIR="")
29
30 if test "x$ATOMIC_DIR" == "x" ; then
31    # no --with-atomic-dir option used
32    if test "x$ATOMIC_ROOT_DIR" != "x" ; then
33       # ATOMIC_ROOT_DIR environment variable defined
34       ATOMIC_DIR=$ATOMIC_ROOT_DIR
35    fi
36 fi
37
38 if test -f ${ATOMIC_DIR}/lib/salome/libATOMIC.so ; then
39    ATOMIC_ok=yes
40    AC_MSG_RESULT(Using ATOMIC module distribution in ${ATOMIC_DIR})
41
42    if test "x$ATOMIC_ROOT_DIR" == "x" ; then
43       ATOMIC_ROOT_DIR=${ATOMIC_DIR}
44    fi
45   
46    ATOMIC_LDFLAGS=-L${ATOMIC_DIR}/lib${LIB_LOCATION_SUFFIX}/salome
47    ATOMIC_CXXFLAGS=-I${ATOMIC_DIR}/include/salome
48 else
49    AC_MSG_WARN("Cannot find valid ATOMIC module installation)
50 fi
51   
52 AC_MSG_RESULT(for ATOMIC: $ATOMIC_ok)
53
54 AC_SUBST(ATOMIC_ROOT_DIR)
55 AC_SUBST(ATOMIC_LDFLAGS)
56 AC_SUBST(ATOMIC_CXXFLAGS)
57  
58 ])dnl
59