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