]> SALOME platform Git repositories - samples/sierpinsky.git/blob - adm_local/unix/config_files/check_SIERPINSKY.m4
Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[samples/sierpinsky.git] / adm_local / unix / config_files / check_SIERPINSKY.m4
1 #  Check availability of SIERPINSKY binary distribution
2 #
3 #  Author : Marc Tajchman (CEA, 2002)
4 #------------------------------------------------------------
5
6 AC_DEFUN([CHECK_SIERPINSKY],[
7
8 AC_CHECKING(for Sierpinsky)
9
10 Sierpinsky_ok=no
11
12 AC_ARG_WITH(sier,
13             --with-sierpinsky=DIR  root directory path of SIERPINSKY build or installation,
14             SIERPINSKY_DIR="$withval",SIERPINSKY_DIR="")
15
16 if test "x$SIERPINSKY_DIR" = "x" ; then
17
18 # no --with-gui-dir option used
19
20   if test "x$SIERPINSKY_ROOT_DIR" != "x" ; then
21
22     # SALOME_ROOT_DIR environment variable defined
23     SIERPINSKY_DIR=$SIERPINSKY_ROOT_DIR
24
25   else
26
27     # search Salome binaries in PATH variable
28     AC_PATH_PROG(TEMP, libSIERPINSKY.so)
29     if test "x$TEMP" != "x" ; then
30       SIERPINSKY_DIR=`dirname $TEMP`
31     fi
32
33   fi
34
35 fi
36
37 if test -f ${SIERPINSKY_DIR}/lib${LIB_LOCATION_SUFFIX}/salome/libSIERPINSKY.so  ; then
38   Sierpinsky_ok=yes
39   AC_MSG_RESULT(Using SIERPINSKY module distribution in ${SIERPINSKY_DIR})
40
41   if test "x$SIERPINSKY_ROOT_DIR" == "x" ; then
42     SIERPINSKY_ROOT_DIR=${SIERPINSKY_DIR}
43   fi
44   
45   SIERPINSKY_LDFLAGS=-L${SIERPINSKY_ROOT_DIR}/lib${LIB_LOCATION_SUFFIX}/salome
46   SIERPINSKY_CXXFLAGS=-I${SIERPINSKY_ROOT_DIR}/include/salome
47
48   AC_SUBST(SIERPINSKY_ROOT_DIR)
49   AC_SUBST(SIERPINSKY_LDFLAGS)
50   AC_SUBST(SIERPINSKY_CXXFLAGS)
51
52 else
53   AC_MSG_WARN("Cannot find compiled SIERPINSKY module distribution")
54 fi
55   
56 AC_MSG_RESULT(for SIERPINSKY: $Sierpinsky_ok)
57  
58 ])dnl
59