Salome HOME
Update copyright information
[modules/superv.git] / adm_local / unix / config_files / check_SUPERV.m4
1 dnl  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 dnl
3 dnl  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 dnl  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 dnl
6 dnl  This library is free software; you can redistribute it and/or
7 dnl  modify it under the terms of the GNU Lesser General Public
8 dnl  License as published by the Free Software Foundation; either
9 dnl  version 2.1 of the License.
10 dnl
11 dnl  This library is distributed in the hope that it will be useful,
12 dnl  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 dnl  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 dnl  Lesser General Public License for more details.
15 dnl
16 dnl  You should have received a copy of the GNU Lesser General Public
17 dnl  License along with this library; if not, write to the Free Software
18 dnl  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 dnl
20 dnl  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 dnl
22 #  Check availability of SUPERV module binary distribution
23 #
24 #  Author : Marc Tajchman (CEA, 2002)
25 #------------------------------------------------------------
26
27 AC_DEFUN([CHECK_SUPERV],[
28
29 AC_CHECKING(for Superv)
30
31 Superv_ok=no
32
33 SUPERV_LDFLAGS=""
34 SUPERV_CXXFLAGS=""
35
36 AC_ARG_WITH(superv,
37             --with-superv=DIR root directory path of SUPERV installation,
38             SUPERV_DIR="$withval",SUPERV_DIR="")
39
40 if test "x$SUPERV_DIR" = "x" ; then
41
42 # no --with-gui-dir option used
43
44   if test "x$SUPERV_ROOT_DIR" != "x" ; then
45
46     # SUPERV_ROOT_DIR environment variable defined
47     SUPERV_DIR=$SUPERV_ROOT_DIR
48
49   else
50
51     # search SUPERV binaries in PATH variable
52     AC_PATH_PROG(TEMP, libSUPERV.so)
53     if test "x$TEMP" != "x" ; then
54       SUPERV_BIN_DIR=`dirname $TEMP`
55       SUPERV_DIR=`dirname $SUPERV_BIN_DIR`
56     fi
57
58   fi
59 #
60 fi
61
62 if test -f ${SUPERV_DIR}/lib/salome/libSUPERV.so  ; then
63   Superv_ok=yes
64   AC_MSG_RESULT(Using SUPERV distribution in ${SUPERV_DIR})
65
66   if test "x$SUPERV_ROOT_DIR" == "x" ; then
67     SUPERV_ROOT_DIR=${SUPERV_DIR}
68   fi
69   AC_SUBST(SUPERV_ROOT_DIR)
70
71   SUPERV_LDFLAGS=-L${SUPERV_DIR}/lib${LIB_LOCATION_SUFFIX}/salome
72   SUPERV_CXXFLAGS=-I${SUPERV_DIR}/include/salome
73
74   AC_SUBST(SUPERV_LDFLAGS)
75   AC_SUBST(SUPERV_CXXFLAGS)
76
77 else
78   AC_MSG_WARN("Cannot find compiled SUPERV distribution")
79 fi
80   
81 AC_MSG_RESULT(for SUPERV: $Superv_ok)
82  
83 ])dnl
84