]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/configure.in
configure.in now used (just to check that ocaml and findlib are there)
[helm.git] / helm / ocaml / configure.in
1 AC_INIT(Makefile.common)
2
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)
6 fi
7
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)
11 fi
12
13 AC_OUTPUT([
14   Makefile
15 ])