]> SALOME platform Git repositories - modules/kernel.git/blob - salome_adm/unix/config_files/DEPRECATED/check_Salome.m4
Salome HOME
To see which hdf5 we're using in configure log
[modules/kernel.git] / salome_adm / unix / config_files / DEPRECATED / check_Salome.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 dnl------------------------------------------------------------
23 dnl  Check availability of Salome binary distribution
24 dnl
25 dnl  Author : Marc Tajchman (CEA, 2002)
26 dnl------------------------------------------------------------
27
28 AC_DEFUN([CHECK_SALOME],[
29
30 AC_CHECKING(for Salome)
31
32 Salome_ok=no
33
34 AC_ARG_WITH(salome,
35             --with-salome=DIR root directory path of SALOME installation,
36             SALOME_DIR="$withval",SALOME_DIR="")
37
38 if test "x$SALOME_DIR" = "x" ; then
39
40 # no --with-salome-dir option used
41
42    if test "x$SALOME_ROOT_DIR" != "x" ; then
43
44     # SALOME_ROOT_DIR environment variable defined
45       SALOME_DIR=$SALOME_ROOT_DIR
46
47    else
48
49     # search Salome binaries in PATH variable
50       AC_PATH_PROG(TEMP, libMEDMEM_Swig.py)
51       if test "x$TEMP" != "x" ; then
52          SALOME_BIN_DIR=`dirname $TEMP`
53          SALOME_DIR=`dirname $SALOME_BIN_DIR`
54       fi
55       
56    fi
57
58 fi
59
60 if test -f ${SALOME_DIR}/bin/libMEDMEM_Swig.py  ; then
61    Salome_ok=yes
62    AC_MSG_RESULT(Using Salome distribution in ${SALOME_DIR})
63
64    if test "x$SALOME_ROOT_DIR" = "x" ; then
65       SALOME_ROOT_DIR=${SALOME_DIR}
66    fi
67    if test "x$SALOME_SITE_DIR" = "x" ; then
68       SALOME_SITE_DIR=${SALOME_ROOT_DIR}
69    fi
70    AC_SUBST(SALOME_ROOT_DIR)
71    AC_SUBST(SALOME_SITE_DIR)
72
73 else
74    AC_MSG_WARN("Cannot find compiled Salome distribution")
75 fi
76   
77 AC_MSG_RESULT(for Salome: $Salome_ok)
78  
79 ])dnl
80