--- /dev/null
+# Check availability of Salome's PAL binary distribution
+#
+# Author : Guillaume Boulant (CSSI - 03/08/2005)
+#
+
+AC_DEFUN([CHECK_PAL],[
+
+AC_CHECKING(for Pal)
+
+pal_ok=no
+
+AC_ARG_WITH(pal,
+ [ --with-pal=DIR root directory path of PAL build or installation],
+ PAL_DIR="$withval",PAL_DIR="")
+
+if test "x$PAL_DIR" = "x" ; then
+
+# no --with-pal-dir option used
+
+ if test "x$PAL_ROOT_DIR" != "x" ; then
+
+ # PAL_ROOT_DIR environment variable defined
+ PAL_DIR=$PAL_ROOT_DIR
+
+ else
+ AC_MSG_WARN("PAL_ROOT_DIR is not defined")
+ fi
+fi
+
+if test -f ${PAL_DIR}/bin/salome/runAppli ; then
+ pal_ok=yes
+ AC_MSG_RESULT(Using Pal module distribution in ${PAL_DIR})
+
+ if test "x$PAL_ROOT_DIR" = "x" ; then
+ PAL_ROOT_DIR=${PAL_DIR}
+ fi
+ if test "x$PAL_SITE_DIR" = "x" ; then
+ PAL_SITE_DIR=${PAL_ROOT_DIR}
+ fi
+ AC_SUBST(PAL_ROOT_DIR)
+ AC_SUBST(PAL_SITE_DIR)
+
+else
+ AC_MSG_WARN("Cannot find compiled Pal module distribution")
+fi
+
+AC_MSG_RESULT(for Pal: $pal_ok)
+
+])dnl
+
--- /dev/null
+# Check availability of Salome's VISU binary distribution
+#
+# Author : Jerome Roy (CEA, 2003)
+#
+
+AC_DEFUN([CHECK_VISU],[
+
+AC_CHECKING(for Visu)
+
+Visu_ok=no
+
+AC_ARG_WITH(visu,
+ [ --with-visu=DIR root directory path of VISU build or installation],
+ VISU_DIR="$withval",VISU_DIR="")
+
+if test "x$VISU_DIR" = "x" ; then
+
+# no --with-visu-dir option used
+
+ if test "x$VISU_ROOT_DIR" != "x" ; then
+
+ # VISU_ROOT_DIR environment variable defined
+ VISU_DIR=$VISU_ROOT_DIR
+
+ else
+
+ # search Visu binaries in PATH variable
+ AC_PATH_PROG(TEMP, runSalome)
+ if test "x$TEMP" != "x" ; then
+ VISU_BIN_DIR=`dirname $TEMP`
+ VISU_DIR=`dirname $VISU_BIN_DIR`
+ fi
+
+ fi
+#
+fi
+
+if test -f ${VISU_DIR}/bin/salome/runSalome ; then
+ Visu_ok=yes
+ AC_MSG_RESULT(Using Visu module distribution in ${VISU_DIR})
+
+ if test "x$VISU_ROOT_DIR" = "x" ; then
+ VISU_ROOT_DIR=${VISU_DIR}
+ fi
+ if test "x$VISU_SITE_DIR" = "x" ; then
+ VISU_SITE_DIR=${VISU_ROOT_DIR}
+ fi
+ AC_SUBST(VISU_ROOT_DIR)
+ AC_SUBST(VISU_SITE_DIR)
+
+else
+ AC_MSG_WARN("Cannot find compiled Visu module distribution")
+fi
+
+AC_MSG_RESULT(for Visu: $Visu_ok)
+
+])dnl
+
CHECK_KERNEL
+echo
+echo ---------------------------------------------
+echo Testing Visu
+echo ---------------------------------------------
+echo
+
+CHECK_VISU
+
+echo
+echo ---------------------------------------------
+echo Testing Pal
+echo ---------------------------------------------
+echo
+
+CHECK_PAL
+
echo
echo ---------------------------------------------
echo Summary
echo "Default ORB : $DEFAULT_ORB"
echo
+echo
+echo ---------------------------------------------
+echo RunTime Dependencies
+echo ---------------------------------------------
+echo
+variables="Visu_ok pal_ok"
+
+for var in $variables
+do
+ printf " %10s : " `echo \$var | sed -e "s,_ok,,"`
+ eval echo \$$var
+done
+
+
+
dnl generals files which could be included in every makefile
AC_SUBST_FILE(COMMENCE) COMMENCE=adm_local/unix/make_commence