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-df,2.1.1)
24 dnl Check for basic OCaml environment & findlib.
28 if test "x$OCAMLFIND" = "x"; then
29 AC_MSG_ERROR([OCaml findlib is required])
32 AC_CHECK_OCAML_WORD_SIZE(OCAML_WORD_SIZE)
34 dnl Use ocamlfind to find the required packages ...
36 dnl Check for required OCaml packages.
37 AC_CHECK_OCAML_PKG(unix)
38 if test "x$pkg_unix" != "xyes"; then
39 AC_MSG_ERROR([Cannot find required OCaml package 'unix'])
42 AC_CHECK_OCAML_PKG(extlib)
43 if test "x$pkg_extlib" != "xyes"; then
44 AC_MSG_ERROR([Cannot find required OCaml package 'extlib'])
47 AC_CHECK_OCAML_PKG(libvirt)
48 if test "x$pkg_libvirt" != "xyes"; then
49 AC_MSG_ERROR([Cannot find required OCaml package 'libvirt'])
52 AC_CHECK_OCAML_PKG(xml-light)
53 if test "x$pkg_xml_light" != "xyes"; then
54 AC_MSG_ERROR([Cannot find required OCaml package 'xml-light'])
57 AC_CHECK_OCAML_PKG(bitmatch)
58 if test "x$pkg_bitmatch" != "xyes"; then
59 AC_MSG_ERROR([Cannot find required OCaml package 'bitmatch'])
62 dnl Check for optional OCaml packages.
63 AC_CHECK_OCAML_PKG(gettext)
64 AC_CHECK_OCAML_PKG(csv)
69 AC_SUBST(pkg_xml_light)
70 AC_SUBST(pkg_bitmatch)
74 dnl Check for optional perldoc (for building manual pages).
75 AC_CHECK_PROG(HAVE_PERLDOC,perldoc,perldoc)
77 dnl Check for recommended ocaml-gettext tool.
78 AC_CHECK_PROG(OCAML_GETTEXT,ocaml-gettext,ocaml-gettext)
80 dnl Write gettext modules for the programs.
81 dnl http://www.le-gall.net/sylvain+violaine/documentation/ocaml-gettext/html/reference-manual/ch03s04.html
82 for d in diskzip virt-df; do
83 f=`echo $d | tr - _`_gettext.ml
84 AC_MSG_NOTICE([creating $d/$f])
86 echo "(* This file is generated automatically by ./configure. *)" > $d/$f
87 if test "x$pkg_gettext" != "xno"; then
88 # Gettext module is available, so use it.
90 module Gettext = Gettext.Program (
95 let dependencies = [[]]
97 ) (GettextStub.Native)
100 # No gettext module is available, so fake the translation functions.
102 module Gettext = struct
103 external s_ : string -> string = "%identity"
104 external f_ : ('a -> 'b, 'c, 'd) format -> ('a -> 'b, 'c, 'd) format
106 let sn_ : string -> string -> int -> string
107 = fun s p n -> if n = 1 then s else p
108 let fn_ : ('a -> 'b, 'c, 'd) format -> ('a -> 'b, 'c, 'd) format -> int
109 -> ('a -> 'b, 'c, 'd) format
110 = fun s p n -> if n = 1 then s else p
116 dnl Enable type annotation files (always, there's no penalty for doing
117 dnl this). Use C-c C-t in emacs to print the type of an expression.
118 OCAMLCFLAGS="-dtypes -g"
121 dnl Enable profiling support for native code.
122 AC_ARG_ENABLE([profiling],
123 [AS_HELP_STRING([--enable-profiling],
124 [enable profiling for native code])],
125 [OCAMLOPTFLAGS="$OCAMLOPTFLAGS -p"])
127 AC_SUBST(OCAMLCFLAGS)
128 AC_SUBST(OCAMLOPTFLAGS)
131 echo "------------------------------------------------------------"
132 echo "Thanks for downloading" $PACKAGE_STRING
133 echo "------------------------------------------------------------"
135 dnl Produce output files.
136 AC_CONFIG_HEADERS([config.h])
137 AC_CONFIG_FILES([Makefile