Salome HOME
Join modifications from branch OCC_development_for_3_2_0a2
[samples/calculator.git] / adm_local / unix / config_files / check_CALCULATOR.m4
diff --git a/adm_local/unix/config_files/check_CALCULATOR.m4 b/adm_local/unix/config_files/check_CALCULATOR.m4
new file mode 100755 (executable)
index 0000000..49f22df
--- /dev/null
@@ -0,0 +1,52 @@
+#  Check availability of CALCULATOR binary distribution
+#
+#  Author : Marc Tajchman (CEA, 2002)
+#------------------------------------------------------------
+
+AC_DEFUN([CHECK_CALCULATOR],[
+
+AC_CHECKING(for Calculator)
+
+Calculator_ok=no
+
+AC_ARG_WITH(calc,
+           --with-calculator=DIR  root directory path of CALCULATOR build or installation,
+           CALCULATOR_DIR="$withval",CALCULATOR_DIR="")
+
+if test "x$CALCULATOR_DIR" = "x" ; then
+
+# no --with-gui-dir option used
+
+  if test "x$CALCULATOR_ROOT_DIR" != "x" ; then
+
+    # SALOME_ROOT_DIR environment variable defined
+    CALCULATOR_DIR=$CALCULATOR_ROOT_DIR
+
+  else
+
+    # search Salome binaries in PATH variable
+    AC_PATH_PROG(TEMP, libCALCULATOREngine.so)
+    if test "x$TEMP" != "x" ; then
+      CALCULATOR_DIR=`dirname $TEMP`
+    fi
+
+  fi
+
+fi
+
+if test -f ${CALCULATOR_DIR}/lib/salome/libCALCULATOREngine.so  ; then
+  Calculator_ok=yes
+  AC_MSG_RESULT(Using CALCULATOR module distribution in ${CALCULATOR_DIR})
+
+  if test "x$CALCULATOR_ROOT_DIR" == "x" ; then
+    CALCULATOR_ROOT_DIR=${CALCULATOR_DIR}
+  fi
+  AC_SUBST(CALCULATOR_ROOT_DIR)
+else
+  AC_MSG_WARN("Cannot find compiled CALCULATOR module distribution")
+fi
+  
+AC_MSG_RESULT(for CALCULATOR: $Calculator_ok)
+])dnl