Remove support for OCaml Calendar v1.
[virt-top.git] / configure.ac
1 # virt-top
2 # Copyright (C) 2007-2008 Red Hat Inc., Richard W.M. Jones
3 #
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.
8 #
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.
13 #
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
17
18 dnl Process this file with autoconf to produce a configure script.
19
20 AC_INIT([virt-top],[1.0.8])
21 AC_CONFIG_MACRO_DIR([m4])
22
23 AC_PROG_INSTALL
24
25 dnl Check for basic OCaml environment & findlib.
26 AC_PROG_OCAML
27 AC_PROG_FINDLIB
28
29 if test "x$OCAMLFIND" = "xno"; then
30     AC_MSG_ERROR([OCaml findlib is required])
31 fi
32
33 dnl Use ocamlfind to find the required packages ...
34
35 dnl Check for required OCaml packages.
36 AC_CHECK_OCAML_PKG(unix)
37 if test "x$OCAML_PKG_unix" = "xno"; then
38     AC_MSG_ERROR([Cannot find required OCaml package 'unix'])
39 fi
40
41 AC_CHECK_OCAML_PKG(extlib)
42 if test "x$OCAML_PKG_extlib" = "xno"; then
43     AC_MSG_ERROR([Cannot find required OCaml package 'extlib'])
44 fi
45
46 AC_CHECK_OCAML_PKG(libvirt)
47 if test "x$OCAML_PKG_libvirt" = "xno"; then
48     AC_MSG_ERROR([Cannot find required OCaml package 'libvirt'])
49 fi
50
51 AC_CHECK_OCAML_PKG(curses)
52 if test "x$OCAML_PKG_curses" = "xno"; then
53     AC_MSG_ERROR([Cannot find required OCaml package 'curses'])
54 fi
55
56 dnl Check for optional OCaml packages.
57 AC_CHECK_OCAML_PKG(gettext)
58 AC_CHECK_OCAML_PKG(xml-light)
59 AC_CHECK_OCAML_PKG(csv)
60 AC_CHECK_OCAML_PKG(calendar)
61
62 AC_SUBST(OCAML_PKG_unix)
63 AC_SUBST(OCAML_PKG_extlib)
64 AC_SUBST(OCAML_PKG_curses)
65 AC_SUBST(OCAML_PKG_gettext)
66 AC_SUBST(OCAML_PKG_xml_light)
67 AC_SUBST(OCAML_PKG_csv)
68 AC_SUBST(OCAML_PKG_calendar)
69
70 dnl Check for optional perldoc (for building manual pages).
71 AC_CHECK_PROG(HAVE_PERLDOC,perldoc,perldoc)
72
73 dnl Check for recommended ocaml-gettext tool.
74 AC_CHECK_PROG(OCAML_GETTEXT,ocaml-gettext,ocaml-gettext)
75
76 dnl Check for msgfmt tool.
77 AC_CHECK_PROG(MSGFMT,msgfmt,msgfmt)
78
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
81 AC_MSG_NOTICE([creating src/opt_gettext.ml])
82 rm -f src/opt_gettext.ml
83 echo "(* This file is generated automatically by ./configure. *)" > src/opt_gettext.ml
84 if test "x$OCAML_PKG_gettext" != "xno"; then
85     # Gettext module is available, so use it.
86     cat <<EOT >>src/opt_gettext.ml
87 module Gettext = Gettext.Program (
88   struct
89     let textdomain = "virt-top"
90     let codeset = None
91     let dir = None
92     let dependencies = [[]]
93   end
94 ) (GettextStub.Native)
95 EOT
96 else
97     # No gettext module is available, so fake the translation functions.
98     cat <<EOT >>src/opt_gettext.ml
99 module Gettext = struct
100   external s_ : string -> string = "%identity"
101   external f_ : ('a -> 'b, 'c, 'd) format -> ('a -> 'b, 'c, 'd) format
102     = "%identity"
103   let sn_ : string -> string -> int -> string
104     = fun s p n -> if n = 1 then s else p
105   let fn_ : ('a -> 'b, 'c, 'd) format -> ('a -> 'b, 'c, 'd) format -> int
106       -> ('a -> 'b, 'c, 'd) format
107     = fun s p n -> if n = 1 then s else p
108 end
109 EOT
110 fi
111
112 dnl Summary.
113 echo "------------------------------------------------------------"
114 echo "Thanks for downloading" $PACKAGE_STRING
115 echo "------------------------------------------------------------"
116
117 dnl Produce output files.
118 AC_CONFIG_HEADERS([config.h])
119 AC_CONFIG_FILES([Makefile
120         Make.rules
121         po/Makefile
122         src/Makefile
123         src/version.ml
124         ])
125 AC_OUTPUT