Salome HOME
Improving documentation with references and examples
[modules/adao.git] / adm_local / check_aster.m4
1 dnl  Copyright (C) 2010-2011  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 dnl  Author: AndrĂ© Ribes, andre.ribes@edf.fr, EDF R&D
20
21 #
22 # Check availability of Aster binary distribution
23 #
24
25 AC_DEFUN([AC_CHECK_ASTER],[
26
27 AC_CHECKING(for Aster)
28
29 Aster_ok=no
30
31 AC_ARG_WITH(aster,
32       [AC_HELP_STRING([--with-aster=DIR],[root directory path of Aster installation])],
33       [ASTER_DIR="$withval"],[ASTER_DIR=""])
34
35 if test -f ${ASTER_DIR}/asteru ; then
36    Aster_ok=yes
37    AC_MSG_RESULT(Using Aster distribution in ${ASTER_DIR})
38
39    ASTER_INCLUDES=-I$ASTER_DIR/bibc/include
40
41    AC_SUBST(ASTER_DIR)
42    AC_SUBST(ASTER_INCLUDES)
43
44 else
45    AC_MSG_WARN("Cannot find Aster distribution")
46 fi
47
48 AC_MSG_RESULT(for Aster: $Aster_ok)
49
50 ])dnl