1 dnl Copyright (C) 2007-2010 CEA/DEN, EDF R&D
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.
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.
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
17 dnl See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 dnl File : check_BLSURF.m4
21 dnl Author : Vadim SANDLER, Open CASCADE S.A.S (vadim.sandler@opencascade.com)
23 AC_DEFUN([CHECK_BLSURF],[
25 AC_REQUIRE([AC_PROG_CXX])dnl
26 AC_REQUIRE([AC_PROG_CXXCPP])dnl
28 AC_CHECKING(for BLSURF commercial product)
37 [ --with-blsurf=DIR root directory path of BLSURF installation])
41 if test "$with_blsurf" != "no" ; then
42 if test "$with_blsurf" == "yes" || test "$with_blsurf" == "auto"; then
45 BLSURF_HOME="$with_blsurf"
48 if test "$BLSURF_HOME" == "" ; then
49 if test "x$BLSURFHOME" != "x" ; then
50 BLSURF_HOME=$BLSURFHOME
54 if test "x$BLSURF_HOME" != "x"; then
57 echo -------------------------------------------------
58 echo You are about to choose to use somehow the
59 echo BLSURF commercial product to generate 2D mesh.
62 BLSURF_INCLUDES="-I$BLSURF_HOME/include"
63 BLSURF_LIBS="-L$BLSURF_HOME/lib -lBLSurf"
65 CPPFLAGS_old="$CPPFLAGS"
66 CXXFLAGS_old="$CXXFLAGS"
67 CPPFLAGS="$BLSURF_INCLUDES $CPPFLAGS"
68 CXXFLAGS="$BLSURF_INCLUDES $CXXFLAGS"
70 AC_MSG_CHECKING(for BLSURF header file)
72 AC_CHECK_HEADER(distene/api.h,BLSURF_ok=yes,BLSURF_ok=no)
74 if test "x$BLSURF_ok" == "xyes"; then
76 AC_MSG_CHECKING(for BLSURF library)
78 LDFLAGS_old="$LDFLAGS"
79 LDFLAGS="-L. -$BLSURF_LIBS $LDFLAGS"
82 #include "distene/api.h",
84 BLSURF_ok=yes,BLSURF_ok=no
87 LDFLAGS="$LDFLAGS_old"
89 AC_MSG_RESULT($BLSURF_ok)
92 CPPFLAGS="$CPPFLAGS_old"
93 CXXFLAGS="$CXXFLAGS_old"
98 if test "x$BLSURF_ok" == xno ; then
99 AC_MSG_RESULT(for BLSURF: no)
100 AC_MSG_WARN(BLSURF includes or libraries are not found or are not properly installed)
101 AC_MSG_WARN(Cannot build without BLSURF. Use --with-blsurf option to define BLSURF installation.)
103 AC_MSG_RESULT(for BLSURF: yes)
106 AC_SUBST(BLSURF_INCLUDES)
107 AC_SUBST(BLSURF_LIBS)