Salome HOME
Merge from V6_main_20120808 08Aug12
[modules/gui.git] / adm_local / unix / config_files / check_msg2qm.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 # Check availability of Qt's msg2qm tool binary distribution
24 #
25 # Author : Jerome Roy (CEA, 2003)
26 #
27
28 AC_DEFUN([CHECK_MSG2QM],[
29
30 AC_CHECKING(for msg2qm)
31
32 msg2qm_ok=no
33
34 AC_ARG_WITH(msg2qm,
35             [  --with-msg2qm=DIR               root directory path of MSG2QM installation],
36             MSG2QM_DIR="$withval",MSG2QM_DIR="")
37
38 if test "x$MSG2QM_DIR" == "x" ; then
39
40 # no --with-MSG2QM-dir option used
41
42    if test "x$MSG2QM_ROOT" != "x" ; then
43
44     # MSG2QM_ROOT environment variable defined
45       MSG2QM_DIR=$MSG2QM_ROOT
46
47    else
48
49     # search MSG2QM binaries in PATH variable
50       AC_PATH_PROG(TEMP, msg2qm)
51       if test "x$TEMP" != "x" ; then
52          MSG2QM_DIR=`dirname $TEMP`
53       fi
54       
55    fi
56
57 fi
58
59 # look for msg2qm in ${MSG2QM_DIR} directory
60 if test -f ${MSG2QM_DIR}/msg2qm ; then
61    msg2qm_ok=yes
62    MSG2QM="${MSG2QM_DIR}/msg2qm"
63    AC_MSG_RESULT(Using MSG2QM executable in ${MSG2QM_DIR})
64 else
65    # if not found, look for msg2qm in ${MSG2QM_DIR}/bin directory
66    if test -f ${MSG2QM_DIR}/bin/msg2qm ; then
67       msg2qm_ok=yes
68       MSG2QM="${MSG2QM_DIR}/bin/msg2qm"
69       AC_MSG_RESULT(Using MSG2QM executable in ${MSG2QM_DIR}/bin)
70    else     
71       AC_MSG_WARN("Cannot find MSG2QM executable")
72    fi
73 fi
74
75 AC_SUBST(MSG2QM)
76 AC_MSG_RESULT(for MSG2QM: $msg2qm_ok)
77  
78 ])dnl
79