Salome HOME
dd30f1b07b94aeffcae0902b4d342c1bebd9ee44
[modules/geom.git] / adm_local / unix / config_files / check_GEOM.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 Geom binary distribution
23 #
24 # Author : Nicolas REJNERI (OPEN CASCADE, 2003)
25 #
26
27 AC_DEFUN([CHECK_GEOM],[
28
29 AC_CHECKING(for Geom)
30
31 Geom_ok=no
32
33 GEOM_LDFLAGS=""
34 GEOM_CXXFLAGS=""
35
36 AC_ARG_WITH(geom,
37             [  --with-geom=DIR root directory path of GEOM installation ],
38             GEOM_DIR="$withval",GEOM_DIR="")
39
40 if test "x$GEOM_DIR" == "x" ; then
41
42 # no --with-geom-dir option used
43
44    if test "x$GEOM_ROOT_DIR" != "x" ; then
45
46     # GEOM_ROOT_DIR environment variable defined
47       GEOM_DIR=$GEOM_ROOT_DIR
48
49    else
50
51     # search Geom binaries in PATH variable
52       AC_PATH_PROG(TEMP, libGEOM_Swig.py)
53       if test "x$TEMP" != "x" ; then
54          GEOM_BIN_DIR=`dirname $TEMP`
55          GEOM_DIR=`dirname $GEOM_BIN_DIR`
56       fi
57       
58    fi
59
60 fi
61
62 if test -f ${GEOM_DIR}/bin/salome/geompy.py ; then
63    Geom_ok=yes
64    AC_MSG_RESULT(Using Geom module distribution in ${GEOM_DIR})
65
66    if test "x$GEOM_ROOT_DIR" == "x" ; then
67       GEOM_ROOT_DIR=${GEOM_DIR}
68    fi
69    AC_SUBST(GEOM_ROOT_DIR)
70
71    GEOM_LDFLAGS=-L${GEOM_DIR}/lib${LIB_LOCATION_SUFFIX}/salome
72    GEOM_CXXFLAGS=-I${GEOM_DIR}/include/salome
73
74    AC_SUBST(GEOM_LDFLAGS)
75    AC_SUBST(GEOM_CXXFLAGS)
76
77 else
78    AC_MSG_WARN("Cannot find compiled Geom module distribution")
79 fi
80
81 AC_MSG_RESULT(for Geom: $Geom_ok)
82  
83 ])dnl
84