Salome HOME
Update version to 3.2.0a1
[modules/visu.git] / adm_local / unix / config_files / check_GUI.m4
1 #  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
3
4 #  This library is free software; you can redistribute it and/or 
5 #  modify it under the terms of the GNU Lesser General Public 
6 #  License as published by the Free Software Foundation; either 
7 #  version 2.1 of the License. 
8
9 #  This library is distributed in the hope that it will be useful, 
10 #  but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 #  Lesser General Public License for more details. 
13
14 #  You should have received a copy of the GNU Lesser General Public 
15 #  License along with this library; if not, write to the Free Software 
16 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
17
18 #  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
19 #
20 #------------------------------------------------------------
21 #  Check availability of Salome binary distribution
22 #
23 #  Author : Marc Tajchman (CEA, 2002)
24 #------------------------------------------------------------
25
26 AC_DEFUN([CHECK_SALOME_GUI],[
27
28 AC_CHECKING(for SalomeGUI)
29
30 SalomeGUI_ok=yes
31
32 AC_ARG_WITH(gui,
33             --with-salome_gui=DIR root directory path of SALOME GUI installation,
34             SALOME_GUI_DIR="$withval",SALOME_GUI_DIR="")
35
36 if test "x$SALOME_GUI_DIR" = "x" ; then
37   if test "x$GUI_ROOT_DIR" != "x" ; then
38     SALOME_GUI_DIR=$GUI_ROOT_DIR
39   else
40     # search Salome binaries in PATH variable
41     AC_PATH_PROG(TEMP, libSalomeApp.so)
42     if test "x$TEMP" != "x" ; then
43       SALOME_GUI_DIR=`dirname $TEMP`
44     else
45     fi
46   fi
47 fi
48
49 if test -f ${SALOME_GUI_DIR}/lib/salome/libSalomeApp.so  ; then
50   SalomeGUI_ok=yes
51   AC_MSG_RESULT(Using SALOME GUI distribution in ${SALOME_GUI_DIR})
52   GUI_ROOT_DIR=${SALOME_GUI_DIR}
53   AC_SUBST(GUI_ROOT_DIR)
54 else
55   AC_MSG_WARN("Cannot find compiled SALOME GUI distribution")
56 fi
57   
58 AC_MSG_RESULT(for SALOME GUI: $SalomeGUI_ok)
59  
60 ])dnl
61