]> SALOME platform Git repositories - modules/hexablock.git/blob - adm_local/unix/config_files/check_HEXABLOCK.m4
Salome HOME
First publish of HEXABLOCKcomponant
[modules/hexablock.git] / adm_local / unix / config_files / check_HEXABLOCK.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 HEXABLOCK module binary distribution
23 #
24 #  Author : Marc Tajchman (CEA, 2002)
25 #------------------------------------------------------------
26
27 AC_DEFUN([CHECK_HEXABLOCK],[
28
29 AC_CHECKING(for HEXABLOCK)
30
31 HEXABLOCK_ok=no
32
33 HEXABLOCK_LDFLAGS=""
34 HEXABLOCK_CXXFLAGS=""
35
36 AC_ARG_WITH(hexablock,
37             --with-hexablock=DIR root directory path of HEXABLOCK installation,
38             HEXABLOCK_DIR="$withval",HEXABLOCK_DIR="")
39
40 if test "x$HEXABLOCK_DIR" = "x" ; then
41
42 # no --with-gui-dir option used
43
44   if test "x$HEXABLOCK_ROOT_DIR" != "x" ; then
45
46     # HEXABLOCK_ROOT_DIR environment variable defined
47     HEXABLOCK_DIR=$HEXABLOCK_ROOT_DIR
48
49   else
50
51     # search hexablock binaries in PATH variable
52     AC_PATH_PROG(TEMP, libHEXABLOCK.so)
53     if test "x$TEMP" != "x" ; then
54       HEXABLOCK_BIN_DIR=`dirname $TEMP`
55       HEXABLOCK_DIR=`dirname $HEXABLOCK_BIN_DIR`
56     fi
57
58   fi
59 #
60 fi
61
62 if test -f ${HEXABLOCK_DIR}/lib/salome/libHEXABLOCK.so  ; then
63   HEXABLOCK_ok=yes
64   AC_MSG_RESULT(Using HEXABLOCK distribution in ${HEXABLOCK_DIR})
65
66   if test "x$HEXABLOCK_ROOT_DIR" == "x" ; then
67     HEXABLOCK_ROOT_DIR=${HEXABLOCK_DIR}
68   fi
69   AC_SUBST(HEXABLOCK_ROOT_DIR)
70
71   HEXABLOCK_LDFLAGS=-L${HEXABLOCK_DIR}/lib${LIB_LOCATION_SUFFIX}/salome
72   HEXABLOCK_CXXFLAGS=-I${HEXABLOCK_DIR}/include/salome
73     
74   AC_SUBST(HEXABLOCK_LDFLAGS)
75   AC_SUBST(HEXABLOCK_CXXFLAGS)
76
77 else
78   AC_MSG_WARN("Cannot find compiled HEXABLOCK distribution")
79 fi
80   
81 AC_MSG_RESULT(for HEXABLOCK: $HEXABLOCK_ok)
82  
83 ])dnl
84