Salome HOME
Update copyright information
[modules/visu.git] / adm_local / unix / config_files / check_VISU.m4
1 dnl Copyright (C) 2007-2012  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
23 ###########################################################
24 # File    : check_Visu.m4
25 # Author  : Vadim SANDLER (OCN)
26 # Created : 13/07/05
27 # Check availability of VISU binary distribution
28 ###########################################################
29
30 AC_DEFUN([CHECK_VISU],[
31
32 AC_CHECKING(for VISU)
33
34 Visu_ok=no
35
36 VISU_LDFLAGS=""
37 VISU_CXXFLAGS=""
38
39
40 AC_ARG_WITH(visu,
41             [  --with-visu=DIR root directory path of VISU module installation ],
42             VISU_DIR="$withval",VISU_DIR="")
43
44 if test "x$VISU_DIR" == "x" ; then
45    # no --with-visu-dir option used
46    if test "x$VISU_ROOT_DIR" != "x" ; then
47       # VISU_ROOT_DIR environment variable defined
48       VISU_DIR=$VISU_ROOT_DIR
49    fi
50 fi
51
52 if test -f ${VISU_DIR}/idl/salome/VISU_Gen.idl ; then
53    Visu_ok=yes
54    AC_MSG_RESULT(Using VISU module distribution in ${VISU_DIR})
55
56    if test "x$VISU_ROOT_DIR" == "x" ; then
57       VISU_ROOT_DIR=${VISU_DIR}
58    fi
59    AC_SUBST(VISU_ROOT_DIR)
60
61    VISU_LDFLAGS=-L${VISU_DIR}/lib${LIB_LOCATION_SUFFIX}/salome
62    VISU_CXXFLAGS=-I${VISU_DIR}/include/salome
63
64    AC_SUBST(VISU_LDFLAGS)
65    AC_SUBST(VISU_CXXFLAGS)
66
67 else
68    AC_MSG_WARN("Cannot find VISU module sources")
69 fi
70   
71 AC_MSG_RESULT(for VISU: $Visu_ok)
72  
73 ])dnl
74