X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fconfigure.in;fp=helm%2Focaml%2Fconfigure.in;h=715a9d105109d2796fc55e58445a1ac995413e99;hb=a6611bb09e2fa8629a022dbcd6c527ea8fd4df32;hp=0000000000000000000000000000000000000000;hpb=425f2471b811c898c84cf7f5230037dd3c8b719b;p=helm.git diff --git a/helm/ocaml/configure.in b/helm/ocaml/configure.in new file mode 100644 index 000000000..715a9d105 --- /dev/null +++ b/helm/ocaml/configure.in @@ -0,0 +1,15 @@ +AC_INIT(Makefile.common) + +AC_CHECK_PROG(HAVE_OCAMLC, ocamlc, yes, no) +if test $HAVE_OCAMLC = "no"; then + AC_MSG_ERROR(could not find ocamlc in PATH, please make sure ocaml is installed) +fi + +AC_CHECK_PROG(HAVE_OCAMLFIND, ocamlfind, yes, no) +if test $HAVE_OCAMLFIND = "no"; then + AC_MSG_ERROR(could not find ocamlfind in PATH, please make sure findlib is installed) +fi + +AC_OUTPUT([ + Makefile +])