14c3bc78aa7c236aa82ab01e7ae35879d249ea59
[guestfs-browser.git] / configure.ac
1 dnl Guestfs Browser.
2 dnl Copyright (C) 2010 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.1])
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([xml-light])
62 if test "$OCAML_PKG_xml_light" = "no"; then
63     AC_MSG_ERROR([Please install OCaml module 'xml-light'.])
64 fi
65
66 AC_CHECK_OCAML_PKG([extlib])
67 if test "$OCAML_PKG_extlib" = "no"; then
68     AC_MSG_ERROR([Please install OCaml module 'extlib'.])
69 fi
70
71 dnl Check for gdk_pixbuf_mlsource program.
72 AC_PATH_PROGS([GDK_PIXBUF_MLSOURCE], [gdk_pixbuf_mlsource])
73
74 dnl Optional programs.
75 AC_CHECK_PROG(PERLDOC,[perldoc],[perldoc],[no])
76 if test "x$PERLDOC" = "xno" ; then
77   AC_MSG_WARN([perldoc not found - install perl to make man pages])
78 fi
79 AM_CONDITIONAL(HAVE_PERLDOC,[test "$perldoc" != "no"])
80
81 AC_CONFIG_HEADERS([config.h])
82 AC_CONFIG_FILES([Makefile config.ml guestfs-browser.spec])
83 AC_OUTPUT