Add a .gitignore file for git.
[virt-ctrl.git] / configure.ac
index d777be6..b58184e 100644 (file)
@@ -17,7 +17,7 @@
 
 dnl Process this file with autoconf to produce a configure script.
 
-AC_INIT(virt-ctrl,1.0.0)
+AC_INIT(virt-ctrl,1.0.1)
 
 AC_PROG_INSTALL
 
@@ -70,6 +70,16 @@ if test "x$pkg_lablgtk2" != "xyes"; then
     AC_MSG_ERROR([Cannot find required OCaml package 'lablgtk2'])
 fi
 
+AC_CHECK_OCAML_PKG(xml-light)
+if test "x$pkg_xml_light" != "xyes"; then
+    AC_MSG_ERROR([Cannot find required OCaml package 'xml-light'])
+fi
+
+AC_CHECK_OCAML_PKG(extlib)
+if test "x$pkg_extlib" != "xyes"; then
+    AC_MSG_ERROR([Cannot find required OCaml package 'extlib'])
+fi
+
 dnl Check for optional OCaml packages.
 AC_CHECK_OCAML_PKG(gettext)
 AC_CHECK_OCAML_PKG(dbus)