2 # Copyright (C) 2007-2008 Red Hat Inc., Richard W.M. Jones
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2 of the License, or (at your option) any later version.
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 # Lesser General Public License for more details.
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 dnl Process this file with autoconf to produce a configure script.
20 AC_INIT(virt-mem,0.2.4)
25 dnl Check for basic OCaml environment & findlib.
29 if test "x$OCAMLFIND" = "x"; then
30 AC_MSG_ERROR([OCaml findlib is required])
33 dnl Use ocamlfind to find the required packages ...
35 dnl Check for required OCaml packages.
36 AC_CHECK_OCAML_PKG(unix)
37 if test "x$pkg_unix" != "xyes"; then
38 AC_MSG_ERROR([Cannot find required OCaml package 'unix'])
41 AC_CHECK_OCAML_PKG(extlib)
42 if test "x$pkg_extlib" != "xyes"; then
43 AC_MSG_ERROR([Cannot find required OCaml package 'extlib'])
46 AC_CHECK_OCAML_PKG(libvirt)
47 if test "x$pkg_libvirt" != "xyes"; then
48 AC_MSG_ERROR([Cannot find required OCaml package 'libvirt'])
51 AC_CHECK_OCAML_PKG(xml-light)
52 if test "x$pkg_xml_light" != "xyes"; then
53 AC_MSG_ERROR([Cannot find required OCaml package 'xml-light'])
56 AC_CHECK_OCAML_PKG(bitmatch)
57 if test "x$pkg_bitmatch" != "xyes"; then
58 AC_MSG_ERROR([Cannot find required OCaml package 'bitmatch'])
61 dnl Check for optional OCaml packages.
62 AC_CHECK_OCAML_PKG(gettext)
63 AC_CHECK_OCAML_PKG(csv)
68 AC_SUBST(pkg_xml_light)
69 AC_SUBST(pkg_bitmatch)
73 dnl Check for optional perldoc (for building manual pages).
74 AC_CHECK_PROG(HAVE_PERLDOC,perldoc,perldoc)
76 dnl Check for recommended ocaml-gettext tool.
77 AC_CHECK_PROG(OCAML_GETTEXT,ocaml-gettext,ocaml-gettext)
79 dnl Write gettext modules for the programs.
80 dnl http://www.le-gall.net/sylvain+violaine/documentation/ocaml-gettext/html/reference-manual/ch03s04.html
82 f=`echo $d | tr - _`_gettext.ml
83 AC_MSG_NOTICE([creating lib/$f])
85 echo "(* This file is generated automatically by ./configure. *)" > lib/$f
86 if test "x$pkg_gettext" != "xno"; then
87 # Gettext module is available, so use it.
89 module Gettext = Gettext.Program (
94 let dependencies = [[]]
96 ) (GettextStub.Native)
99 # No gettext module is available, so fake the translation functions.
101 module Gettext = struct
102 external s_ : string -> string = "%identity"
103 external f_ : ('a -> 'b, 'c, 'd) format -> ('a -> 'b, 'c, 'd) format
105 let sn_ : string -> string -> int -> string
106 = fun s p n -> if n = 1 then s else p
107 let fn_ : ('a -> 'b, 'c, 'd) format -> ('a -> 'b, 'c, 'd) format -> int
108 -> ('a -> 'b, 'c, 'd) format
109 = fun s p n -> if n = 1 then s else p
115 dnl Enable type annotation files (always, there's no penalty for doing
116 dnl this). Use C-c C-t in emacs to print the type of an expression.
117 OCAMLCFLAGS="-dtypes -g"
120 dnl Enable profiling support for native code.
121 AC_ARG_ENABLE([profiling],
122 [AS_HELP_STRING([--enable-profiling],
123 [enable profiling for native code])],
124 [OCAMLOPTFLAGS="$OCAMLOPTFLAGS -p"])
126 AC_SUBST(OCAMLCFLAGS)
127 AC_SUBST(OCAMLOPTFLAGS)
130 echo "------------------------------------------------------------"
131 echo "Thanks for downloading" $PACKAGE_STRING
132 echo "------------------------------------------------------------"
134 dnl Produce output files.
135 AC_CONFIG_HEADERS([config.h])
136 AC_CONFIG_FILES([Makefile
139 lib/virt_mem_version.ml