X-Git-Url: http://git.annexia.org/?p=virt-mem.git;a=blobdiff_plain;f=configure.ac;h=c045865bd53b8101166cb32013cc1a3ed89d1c84;hp=15c5951f1752233761cea992ef445919bcaa2dee;hb=41f56f1ddab7d40bb7b50c0c6f007d7643622128;hpb=b70c967911e197b74d6d7ad98e3df9240d82572f diff --git a/configure.ac b/configure.ac index 15c5951..c045865 100644 --- a/configure.ac +++ b/configure.ac @@ -17,7 +17,7 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT(virt-mem,0.2.4) +AC_INIT(virt-mem,0.2.7) AC_PROG_INSTALL AC_PROG_MKDIR_P @@ -31,6 +31,9 @@ AC_PROG_CC_C_O AC_CHECK_FUNCS([memmem]) +dnl Do we have pahole (from acme's "dwarves" library)? +AC_PATH_PROG(PAHOLE,pahole) + dnl Check for basic OCaml environment & findlib. AC_PROG_OCAML AC_PROG_FINDLIB @@ -62,22 +65,24 @@ if test "x$pkg_xml_light" != "xyes"; then AC_MSG_ERROR([Cannot find required OCaml package 'xml-light']) fi -AC_CHECK_OCAML_PKG(bitmatch) -if test "x$pkg_bitmatch" != "xyes"; then - AC_MSG_ERROR([Cannot find required OCaml package 'bitmatch']) +AC_CHECK_OCAML_PKG(bitstring) +if test "x$pkg_bitstring" != "xyes"; then + AC_MSG_ERROR([Cannot find required OCaml package 'bitstring']) fi dnl Check for optional OCaml packages. AC_CHECK_OCAML_PKG(gettext) AC_CHECK_OCAML_PKG(csv) +AC_CHECK_OCAML_PKG(xmlrpc-light) AC_SUBST(pkg_unix) AC_SUBST(pkg_extlib) AC_SUBST(pkg_libvirt) AC_SUBST(pkg_xml_light) -AC_SUBST(pkg_bitmatch) +AC_SUBST(pkg_bitstring) AC_SUBST(pkg_gettext) AC_SUBST(pkg_csv) +AC_SUBST(pkg_xmlrpc_light) dnl Check for optional perldoc (for building manual pages). AC_CHECK_PROG(HAVE_PERLDOC,perldoc,perldoc) @@ -151,5 +156,7 @@ AC_CONFIG_FILES([Makefile ps/Makefile mem/Makefile po/Makefile + extract/fedora-koji/Makefile + extract/codegen/Makefile ]) AC_OUTPUT