Version 0.1.6.
[guestfs-browser.git] / configure.ac
1 dnl Guestfs Browser.
2 dnl Copyright (C) 2010-2011 Red Hat Inc.
3 dnl
4 dnl This program is free software; you can redistribute it and/or modify
5 dnl it under the terms of the GNU General Public License as published by
6 dnl the Free Software Foundation; either version 2 of the License, or
7 dnl (at your option) any later version.
8 dnl
9 dnl This program is distributed in the hope that it will be useful,
10 dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
11 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 dnl GNU General Public License for more details.
13 dnl
14 dnl You should have received a copy of the GNU General Public License along
15 dnl with this program; if not, write to the Free Software Foundation, Inc.,
16 dnl 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17
18 AC_INIT([guestfs-browser],[0.1.6])
19 AM_INIT_AUTOMAKE([foreign])
20 AC_CONFIG_MACRO_DIR([m4])
21
22 dnl Check for C compiler.
23 AC_PROG_CC_STDC
24 AC_PROG_INSTALL
25 AC_PROG_CPP
26 AC_C_PROTOTYPES
27 test "x$U" != "x" && AC_MSG_ERROR([Compiler not ANSI compliant])
28 AM_PROG_CC_C_O
29 AC_SYS_LARGEFILE
30
31 AC_PROG_SED
32
33 dnl Check for OCaml compiler.
34 AC_PROG_OCAML
35 if test "$OCAMLOPT" = "no"; then
36     AC_MSG_ERROR([You must install the OCaml native compiler (ocamlopt)])
37 fi
38
39 dnl Check for OCaml findlib.
40 AC_PROG_FINDLIB
41 if test "$OCAMLFIND" = "no"; then
42     AC_MSG_ERROR([You must install OCaml findlib (ocamlfind)])
43 fi
44
45 dnl Check for all OCaml packages.
46 AC_CHECK_OCAML_PKG([lablgtk2])
47 if test "$OCAML_PKG_lablgtk2" = "no"; then
48     AC_MSG_ERROR([Please install OCaml module 'lablgtk2'.])
49 fi
50
51 AC_CHECK_OCAML_PKG([libvirt])
52 if test "$OCAML_PKG_libvirt" = "no"; then
53     AC_MSG_ERROR([Please install OCaml module 'libvirt'.])
54 fi
55
56 AC_CHECK_OCAML_PKG([guestfs])
57 if test "$OCAML_PKG_guestfs" = "no"; then
58     AC_MSG_ERROR([Please install OCaml module 'guestfs'.])
59 fi
60
61 AC_CHECK_OCAML_PKG([hivex])
62 if test "$OCAML_PKG_hivex" = "no"; then
63     AC_MSG_ERROR([Please install OCaml module 'hivex'.])
64 fi
65
66 AC_CHECK_OCAML_PKG([xml-light])
67 if test "$OCAML_PKG_xml_light" = "no"; then
68     AC_MSG_ERROR([Please install OCaml module 'xml-light'.])
69 fi
70
71 AC_CHECK_OCAML_PKG([camomile])
72 if test "$OCAML_PKG_camomile" = "no"; then
73     AC_MSG_ERROR([Please install OCaml module 'camomile' (>= 0.8, including the data module if that is separate).])
74 fi
75
76 AC_CHECK_OCAML_PKG([bitstring])
77 if test "$OCAML_PKG_bitstring" = "no"; then
78     AC_MSG_ERROR([Please install OCaml module 'bitstring'.])
79 fi
80
81 AC_CHECK_OCAML_PKG([extlib])
82 if test "$OCAML_PKG_extlib" = "no"; then
83     AC_MSG_ERROR([Please install OCaml module 'extlib'.])
84 fi
85
86 dnl Check for gdk_pixbuf_mlsource program.
87 AC_PATH_PROGS([GDK_PIXBUF_MLSOURCE], [gdk_pixbuf_mlsource])
88
89 dnl Optional programs.
90
91 dnl XXX Other desktop environments?
92 AC_CHECK_PROGS([OPENER], [gnome-open], [no])
93
94 AC_CHECK_PROG([HIVEXREGEDIT], [hivexregedit], [hivexregedit], [no])
95
96 AC_CHECK_PROG(PERLDOC,[perldoc],[perldoc],[no])
97 if test "x$PERLDOC" = "xno" ; then
98     AC_MSG_WARN([perldoc not found - install perl to make man pages])
99 fi
100 AM_CONDITIONAL(HAVE_PERLDOC,[test "$perldoc" != "no"])
101
102 AC_CONFIG_HEADERS([config.h])
103 AC_CONFIG_FILES([Makefile config.ml guestfs-browser.spec])
104 AC_OUTPUT