Salome HOME
Update of CheckDone
[modules/smesh.git] / adm_local / unix / config_files / check_padder.m4
1 dnl Copyright (C) 2007-2022  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, or (at your option) any later version.
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 AC_DEFUN([CHECK_PADDER],[
24 AC_REQUIRE([AC_PROG_CC])dnl
25 AC_REQUIRE([AC_PROG_CPP])dnl
26 AC_REQUIRE([CHECK_CGAL])
27
28 AC_CHECKING(for PADDER)
29
30 padder_ok=no
31
32 AC_ARG_WITH(padder,
33     [  --with-padder=DIR                 root directory path to PADDER installation ],
34     [PADDERHOME="$withval"
35       AC_MSG_RESULT("select $withval as path to PADDER")
36     ])
37
38 if test "x$PADDERHOME" != "xno"; then
39     if test "x$PADDERHOME" == "xyes"; then
40         PADDERHOME=""
41     fi
42     if test -z $PADDERHOME
43     then
44         AC_MSG_WARN(undefined PADDERHOME variable which specify PADDER installation directory)
45         AC_PATH_PROG(BINDIR, padder.exe)
46         if test "x$BINDIR" != "x" ; then
47             PADDERHOME=$BINDIR
48             PADDERHOME=`echo ${PADDERHOME} | sed -e "s,[[^/]]*$,,;s,/$,,;s,^$,.,"`
49             PADDERHOME=`echo ${PADDERHOME} | sed -e "s,[[^/]]*$,,;s,/$,,;s,^$,.,"`
50         fi
51     fi
52     if test ! -z $PADDERHOME
53     then
54         AC_CHECK_FILE($PADDERHOME/padder.env,padder_ok=yes,padder_ok=no)
55     fi
56 fi
57
58 if  test "x$padder_ok" = "xyes"
59 then
60   CPPFLAGS="-DWITH_PADDER $CPPFLAGS"
61 fi
62
63 AC_SUBST(PADDERHOME)
64
65 AC_MSG_RESULT(for PADDER: $padder_ok)
66
67 AM_CONDITIONAL(WITH_PADDER, [test x"$padder_ok" = xyes])
68
69 ])dnl