Salome HOME
Base
[modules/adao.git] / adm_local / check_paco++.m4
1 dnl  Copyright (C) 2007-2008  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 dnl  File   : check_paco++.m4
23 dnl  Author : AndrĂ© RIBES (EDF)
24 dnl  Module : KERNEL
25 dnl
26 AC_DEFUN([CHECK_PACO],[
27 PaCO_ok=yes
28
29 AC_ARG_WITH(paco,
30             [AC_HELP_STRING([--with-paco=DIR],[root directory path of PaCO++ installation])],
31             WITHPACO="yes",WITHPACO="no")
32
33 if test "x$WITHPACO" = "xyes"; 
34 then
35   PACOPATH=$withval
36   PACO_INCLUDES="-I${PACOPATH}/include"
37   PACO_LIBS="-L${PACOPATH}/lib -lPaCO -lGaBro -lBasicBC"
38   dnl a basic test to be sure that PaCO++
39   dnl is correctly installed.
40   AC_CHECK_PROG(PACO_IDL, PaCOIdlTool.sh, yes, no, ${PACOPATH}/bin)
41   if test "x$PACO_IDL" = "xno";
42   then
43     PaCO_ok=no
44     AC_MSG_RESULT(PaCO++ binary not in ${PACOPATH}/bin)
45   fi
46 else
47   PaCO_ok=no
48 fi
49
50 AC_MSG_CHECKING(for PaCO++)
51 if  test "x$PaCO_ok" = "xyes"
52 then
53   AC_MSG_RESULT([yes])
54   PACO_IDL=${PACOPATH}/bin/PaCOIdlTool.sh
55   AC_SUBST(PACO_IDL)
56   AC_SUBST(PACOPATH)
57   AC_SUBST(PACO_INCLUDES)
58   AC_SUBST(PACO_LIBS)
59 else  
60   AC_MSG_RESULT([no])
61 fi
62 ])dnl
63 dnl