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