722832d50e526049cea420b3f9fe64b642dc457d
[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.2.0])
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 "$OCAMLC" = "no"; then
36     AC_MSG_ERROR([You must install the OCaml compiler (ocamlc or ocamlopt)])
37 fi
38
39 dnl Choose native code if available, but allow the user to specify
40 dnl bytecode only (useful for debugging).
41 AC_ARG_WITH([native],
42         [AS_HELP_STRING([--without-native],
43                 [disable native compilation (slow, but useful for debugging)])],
44         [],
45         [with_native=yes])
46 AM_CONDITIONAL([HAVE_OCAMLOPT],
47         [test "x$with_native" != "xno" && test "x$OCAMLBEST" = "xopt"])
48
49 dnl Check for OCaml findlib.
50 AC_PROG_FINDLIB
51 if test "$OCAMLFIND" = "no"; then
52     AC_MSG_ERROR([You must install OCaml findlib (ocamlfind)])
53 fi
54
55 dnl Check for all OCaml packages.
56 AC_CHECK_OCAML_PKG([lablgtk2])
57 if test "$OCAML_PKG_lablgtk2" = "no"; then
58     AC_MSG_ERROR([Please install OCaml module 'lablgtk2'.])
59 fi
60
61 AC_CHECK_OCAML_PKG([libvirt])
62 if test "$OCAML_PKG_libvirt" = "no"; then
63     AC_MSG_ERROR([Please install OCaml module 'libvirt'.])
64 fi
65
66 AC_CHECK_OCAML_PKG([guestfs])
67 if test "$OCAML_PKG_guestfs" = "no"; then
68     AC_MSG_ERROR([Please install OCaml module 'guestfs'.])
69 fi
70
71 AC_CHECK_OCAML_PKG([hivex])
72 if test "$OCAML_PKG_hivex" = "no"; then
73     AC_MSG_ERROR([Please install OCaml module 'hivex'.])
74 fi
75
76 AC_CHECK_OCAML_PKG([xml-light])
77 if test "$OCAML_PKG_xml_light" = "no"; then
78     AC_MSG_ERROR([Please install OCaml module 'xml-light'.])
79 fi
80
81 AC_CHECK_OCAML_PKG([calendar])
82 if test "$OCAML_PKG_calendar" = "no"; then
83     AC_MSG_ERROR([Please install OCaml module 'calendar'.])
84 fi
85
86 AC_CHECK_OCAML_PKG([camomile])
87 if test "$OCAML_PKG_camomile" = "no"; then
88     AC_MSG_ERROR([Please install OCaml module 'camomile' (>= 0.8, including the data module if that is separate).])
89 fi
90
91 AC_CHECK_OCAML_PKG([bitstring])
92 if test "$OCAML_PKG_bitstring" = "no"; then
93     AC_MSG_ERROR([Please install OCaml module 'bitstring'.])
94 fi
95
96 AC_CHECK_OCAML_PKG([extlib])
97 if test "$OCAML_PKG_extlib" = "no"; then
98     AC_MSG_ERROR([Please install OCaml module 'extlib'.])
99 fi
100
101 dnl Check for gdk_pixbuf_mlsource program.
102 AC_PATH_PROGS([GDK_PIXBUF_MLSOURCE], [gdk_pixbuf_mlsource])
103
104 dnl Optional programs.
105
106 dnl XXX Other desktop environments?
107 AC_CHECK_PROGS([OPENER], [gnome-open], [no])
108
109 AC_CHECK_PROG([HIVEXREGEDIT], [hivexregedit], [hivexregedit], [no])
110
111 AC_CHECK_PROG([PERLDOC],[perldoc],[perldoc],[no])
112 if test "x$PERLDOC" = "xno" ; then
113     AC_MSG_WARN([perldoc not found - install perl to make man pages])
114 fi
115 AM_CONDITIONAL([HAVE_PERLDOC],[test "x$PERLDOC" != "xno"])
116
117 AC_CONFIG_HEADERS([config.h])
118 AC_CONFIG_FILES([Makefile])
119 AC_OUTPUT