]> SALOME platform Git repositories - samples/light.git/blob - adm_local/unix/config_files/check_LIGHT.m4
Salome HOME
Merge from BR_V5_DEV 17Feb09
[samples/light.git] / adm_local / unix / config_files / check_LIGHT.m4
1 dnl  Copyright (C) 2005-2008  OPEN CASCADE
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.
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 LIGHT module binary distribution
20 #
21 #  Author : Marc Tajchman (CEA, 2002)
22 #------------------------------------------------------------
23
24 AC_DEFUN([CHECK_LIGHT],[
25
26 AC_CHECKING(for Light)
27
28 Light_ok=no
29
30 LIGHT_LDFLAGS=""
31 LIGHT_CXXFLAGS=""
32
33 AC_ARG_WITH(gui,
34             --with-light=DIR root directory path of LIGHT installation,
35             LIGHT_DIR="$withval",LIGHT_DIR="")
36
37 if test "x$LIGHT_DIR" = "x" ; then
38
39 # no --with-light option used
40
41   if test "x$LIGHT_ROOT_DIR" != "x" ; then
42
43     # LIGHT_ROOT_DIR environment variable defined
44     LIGHT_DIR=$LIGHT_ROOT_DIR
45
46   else
47
48     # search LIGHT binaries in PATH variable
49     AC_PATH_PROG(TEMP, libLIGHT.so)
50     if test "x$TEMP" != "x" ; then
51       LIGHT_BIN_DIR=`dirname $TEMP`
52       LIGHT_DIR=`dirname $LIGHT_BIN_DIR`
53     fi
54
55   fi
56 #
57 fi
58
59 if test -f ${LIGHT_DIR}/lib/salome/libLIGHT.so  ; then
60   Light_ok=yes
61   AC_MSG_RESULT(Using LIGHT distribution in ${LIGHT_DIR})
62
63   if test "x$LIGHT_ROOT_DIR" == "x" ; then
64     LIGHT_ROOT_DIR=${LIGHT_DIR}
65   fi
66   AC_SUBST(LIGHT_ROOT_DIR)
67
68   LIGHT_LDFLAGS=-L${LIGHT_DIR}/lib${LIB_LOCATION_SUFFIX}/salome
69   LIGHT_CXXFLAGS=-I${LIGHT_DIR}/include/salome
70
71   AC_SUBST(LIGHT_LDFLAGS)
72   AC_SUBST(LIGHT_CXXFLAGS)
73 else
74   AC_MSG_WARN("Cannot find compiled LIGHT distribution")
75 fi
76   
77 AC_MSG_RESULT(for LIGHT: $Light_ok)
78  
79 ])dnl
80