]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/matita/configure.ac
renamed Http_client to Http_user_agent to avoid clashes with Gerd's
[helm.git] / helm / matita / configure.ac
index cc8d14a1384bc6b953b131fb16576da1a15ebb04..2cf2e52b845f38edc0923d5d117eba3225bad873 100644 (file)
@@ -1,5 +1,13 @@
 AC_INIT(matita.ml)
 
+AC_CHECK_PROG(HAVE_OCAMLC, ocamlc, yes, no)
+if test $HAVE_OCAMLC = "no"; then
+  AC_MSG_ERROR(could not find ocamlc)
+fi
+AC_CHECK_PROG(HAVE_OCAMLOPT, ocamlopt, yes, no)
+if test $HAVE_OCAMLOPT = "no"; then
+  AC_MSG_WARN(could not find ocamlopt: native code compilation disabled)
+fi
 AC_CHECK_PROG(HAVE_OCAMLFIND, ocamlfind, yes, no)
 if test $HAVE_OCAMLFIND = "yes"; then
   OCAMLFIND="ocamlfind"
@@ -19,7 +27,23 @@ else
   AC_MSG_ERROR(could not find camlp4o)
 fi
 
-FINDLIB_REQUIRES="lablgtk2.glade helm-registry"
+DBI_DRIVER="mysql"
+
+FINDLIB_REQUIRES="\
+lablgtk2.glade \
+lablgtkmathview \
+pcre \
+dbi.$DBI_DRIVER \
+unix \
+helm-cic_omdoc \
+helm-cic_transformations \
+helm-registry \
+helm-tactics \
+helm-xml \
+helm-xmldiff \
+helm-cic_textual_parser2 \
+helm-mathql_interpreter \
+"
 for r in $FINDLIB_REQUIRES
 do
   AC_MSG_CHECKING(for $r ocaml library)
@@ -30,10 +54,50 @@ do
   fi
 done
 
-AC_SUBST(OCAMLFIND)
+OCAMLFIND_COMMANDS=""
+AC_CHECK_PROG(HAVE_OCAMLC_OPT, ocamlc.opt, yes, no)
+if test $HAVE_OCAMLC_OPT = "yes"; then
+  if test "$OCAMLFIND_COMMANDS" = ""; then
+    OCAMLFIND_COMMANDS="ocamlc=ocamlc.opt"
+  else
+    OCAMLFIND_COMMANDS="$OCAMLFIND_COMMANDS ocamlc=ocamlc.opt"
+  fi
+fi
+AC_CHECK_PROG(HAVE_OCAMLOPT_OPT, ocamlopt.opt, yes, no)
+if test $HAVE_OCAMLOPT_OPT = "yes"; then
+  if test "$OCAMLFIND_COMMANDS" = ""; then
+    OCAMLFIND_COMMANDS="ocamlopt=ocamlopt.opt"
+  else
+    OCAMLFIND_COMMANDS="$OCAMLFIND_COMMANDS ocamlopt=ocamlopt.opt"
+  fi
+fi
+if test "$OCAMLFIND_COMMANDS" != ""; then
+  OCAMLFIND="OCAMLFIND_COMMANDS='$OCAMLFIND_COMMANDS' $OCAMLFIND"
+fi
+AC_ARG_ENABLE(debug,
+  [  --enable-debug    Turn on debugging],
+  [case "${enableval}" in
+   yes) DEBUG=true ;;
+   no)  DEBUG=false ;;
+   *) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;;
+  esac],
+  [DEBUG=true])
+if test "$DEBUG" = "true"; then
+  echo "debugging enabled"
+fi
+
+MATITA_GTKRC="matita.gtkrc"
+DBI_MODULE="Dbi_$DBI_DRIVER"
+
 AC_SUBST(CAMLP4O)
-AC_SUBST(LABLGLADECC)
+AC_SUBST(DEBUG)
+AC_SUBST(TRANSFORMER_MODULE)
 AC_SUBST(FINDLIB_REQUIRES)
+AC_SUBST(HAVE_OCAMLOPT)
+AC_SUBST(LABLGLADECC)
+AC_SUBST(OCAMLFIND)
+AC_SUBST(MATITA_GTKRC)
+AC_SUBST(DBI_MODULE)
 
 AC_OUTPUT([
   buildTimeConf.ml