]> SALOME platform Git repositories - plugins/hexoticplugin.git/blob - adm_local/unix/config_files/check_Hexotic.m4
Salome HOME
Merge from V6_main_20120808 08Aug12
[plugins/hexoticplugin.git] / adm_local / unix / config_files / check_Hexotic.m4
1 dnl Copyright (C) 2007-2012  CEA/DEN, EDF R&D
2 dnl
3 dnl This library is free software; you can redistribute it and/or
4 dnl modify it under the terms of the GNU Lesser General Public
5 dnl License as published by the Free Software Foundation; either
6 dnl version 2.1 of the License.
7 dnl
8 dnl This library is distributed in the hope that it will be useful,
9 dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
10 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 dnl Lesser General Public License for more details.
12 dnl
13 dnl You should have received a copy of the GNU Lesser General Public
14 dnl License along with this library; if not, write to the Free Software
15 dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 dnl
17 dnl See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 dnl
19
20 dnl  File   : check_Hexotic.m4
21 dnl  Author : Vadim SANDLER, Open CASCADE S.A.S (vadim.sandler@opencascade.com)
22 dnl
23 AC_DEFUN([CHECK_HEXOTIC],[
24
25 AC_REQUIRE([AC_PROG_CXX])dnl
26 AC_REQUIRE([AC_PROG_CXXCPP])dnl
27
28 AC_CHECKING(for Hexotic commercial product)
29
30 AC_LANG_SAVE
31 AC_LANG_CPLUSPLUS
32
33 AC_ARG_WITH(,
34             [  --with-hexotic=DIR      root directory path of Hexotic installation])
35
36 Hexotic_ok=no
37
38 if test "$with_hexotic" == "no" ; then
39     AC_MSG_WARN(You have choosen building plugin without Hexotic)
40 else
41     if test "$with_hexotic" == "yes" || test "$with_hexotic" == "auto"; then
42         Hexotic_HOME=""
43     else
44         Hexotic_HOME="$with_hexotic"
45     fi
46     
47     if test "$Hexotic_HOME" == "" ; then
48         if test "x$HexoticHOME" != "x" ; then
49             Hexotic_HOME=$HexoticHOME
50         else
51             AC_MSG_WARN(Build plugin without Hexotic)
52         fi
53     fi
54     
55     if test "x$Hexotic_HOME" != "x"; then
56     
57       echo
58       echo -------------------------------------------------
59       echo You are about to choose to use somehow the
60       echo Hexotic commercial product to generate 3D hexahedral mesh.
61       echo
62     
63       AC_CHECKING(for Hexotic executable)
64     
65       AC_CHECK_PROG(Hexotic,hexotic,found)
66     
67       if test "x$Hexotic" == x ; then
68         AC_MSG_WARN(hexotic program not found in PATH variable)
69         AC_MSG_WARN(Build plugin without Hexotic)
70       else
71         Hexotic_ok=yes
72       fi
73     
74     fi
75 fi
76
77 AC_MSG_RESULT(for Hexotic: $Hexotic_ok)
78 AC_LANG_RESTORE
79
80 ])dnl