3 AC_CHECK_PROG(HAVE_OCAMLC, ocamlc, yes, no)
4 if test $HAVE_OCAMLC = "no"; then
5 AC_MSG_ERROR(could not find ocamlc in PATH, please make sure ocaml is installed)
8 AC_CHECK_PROG(HAVE_OCAMLFIND, ocamlfind, yes, no)
9 if test $HAVE_OCAMLFIND = "no"; then
10 AC_MSG_ERROR(could not find ocamlfind in PATH, please make sure findlib is installed)
13 AC_MSG_CHECKING("where to install the library")
14 OCAMLFIND_DEST_DIR="/public/sacerdot/prova"
15 AC_MSG_RESULT($OCAMLFIND_DEST_DIR)
17 AC_MSG_CHECKING("where to install the META files")
18 OCAMLFIND_META_DIR="/public/sacerdot/prova/META"
19 AC_MSG_RESULT($OCAMLFIND_META_DIR)
21 AC_SUBST(OCAMLFIND_DEST_DIR)
22 AC_SUBST(OCAMLFIND_META_DIR)