Version 0.6
[libguestfs.git] / configure.ac
1 # libguestfs
2 # Copyright (C) 2009 Red Hat Inc.
3 #
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
8 #
9 # This program 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
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 AC_INIT([libguestfs],[0.6])
19 AM_INIT_AUTOMAKE
20
21 AC_CONFIG_MACRO_DIR([m4])
22
23 AC_PROG_LIBTOOL
24
25 dnl Check for basic C environment.
26 AC_PROG_CC
27 AC_PROG_INSTALL
28 AC_PROG_CPP
29
30 AC_C_PROTOTYPES
31 test "x$U" != "x" && AC_MSG_ERROR([Compiler not ANSI compliant])
32
33 AM_PROG_CC_C_O
34
35 dnl Check support for 64 bit file offsets.
36 AC_SYS_LARGEFILE
37
38 dnl Headers.
39 AC_CHECK_HEADERS([errno.h sys/types.h sys/un.h sys/wait.h sys/socket.h])
40
41 dnl Check for rpcgen and XDR library.  rpcgen is optional.
42 AC_CHECK_PROG([RPCGEN],[rpcgen],[rpcgen],[no])
43 AM_CONDITIONAL([HAVE_RPCGEN],[test "x$RPCGEN" != "xno"])
44 AC_CHECK_LIB([portablexdr],[xdrmem_create],[],[
45         AC_SEARCH_LIBS([xdrmem_create],[rpc xdr nsl])
46         ])
47
48 dnl Check for pod2man and pod2text.
49 AC_CHECK_PROG([POD2MAN],[pod2man],[pod2man],[no])
50 test "x$POD2MAN" = "xno" &&
51      AC_MSG_ERROR([pod2man must be installed])
52 AC_CHECK_PROG([POD2TEXT],[pod2text],[pod2text],[no])
53 test "x$POD2TEXT" = "xno" &&
54      AC_MSG_ERROR([pod2text must be installed])
55
56 dnl Check for QEMU for running binaries on this $host_cpu, fall
57 dnl back to basic 'qemu'.
58 AC_PATH_PROGS([QEMU],[qemu-system-$host_cpu qemu],[no],
59         [$PATH$PATH_SEPARATOR/usr/sbin$PATH_SEPARATOR/sbin])
60 test "x$QEMU" = "xno" && AC_MSG_ERROR([qemu must be installed])
61 AC_DEFINE_UNQUOTED([QEMU],["$QEMU"],[Location of qemu binary.])
62
63 dnl Check for febootstrap etc.
64 AC_CHECK_PROG([FEBOOTSTRAP],
65         [febootstrap],[febootstrap],[no])
66 test "x$FEBOOTSTRAP" = "xno" && \
67      AC_MSG_ERROR([febootstrap must be installed])
68 AC_CHECK_PROG([FEBOOTSTRAP_RUN],
69         [febootstrap-run],[febootstrap-run],[no])
70 test "x$FEBOOTSTRAP_RUN" = "xno" && \
71      AC_MSG_ERROR([febootstrap-run must be installed])
72 AC_CHECK_PROG([FEBOOTSTRAP_MINIMIZE],
73         [febootstrap-minimize],[febootstrap-minimize],[no])
74 test "x$FEBOOTSTRAP_MINIMIZE" = "xno" && \
75      AC_MSG_ERROR([febootstrap-minimize must be installed])
76 AC_CHECK_PROG([FEBOOTSTRAP_TO_INITRAMFS],
77         [febootstrap-to-initramfs],[febootstrap-to-initramfs],[no])
78 test "x$FEBOOTSTRAP_TO_INITRAMFS" = "xno" && \
79      AC_MSG_ERROR([febootstrap-to-initramfs must be installed])
80
81 dnl --with-repo to specify a Fedora repository.
82 AC_ARG_WITH([repo],
83         [AS_HELP_STRING([--with-repo],
84           [set name of Fedora repository @<:@default=fedora-10@:>@])],
85         [],
86         [with_repo=fedora-10])
87 REPO="$with_repo"
88 AC_SUBST(REPO)
89 AC_DEFINE_UNQUOTED([REPO],["$REPO"],[Name of Fedora repository.])
90
91 AC_DEFINE_UNQUOTED([host_cpu],["$host_cpu"],[Host architecture.])
92
93 dnl --with-mirror to specify a local Fedora mirror.
94 AC_ARG_WITH([mirror],
95         [AS_HELP_STRING([--with-mirror],
96           [set URI of a local Fedora mirror])],
97         [],
98         [with_mirror=])
99 MIRROR="$with_mirror"
100 AC_SUBST(MIRROR)
101
102 dnl Check for OCaml (optional, for OCaml bindings).
103 AC_PROG_OCAML
104 AC_PROG_FINDLIB
105 AM_CONDITIONAL([HAVE_OCAML],[test "x$OCAMLC" != "xno" -a "x$OCAMLFIND" != "xno"])
106
107 dnl Check for Perl (optional, for Perl bindings).
108 dnl XXX This isn't quite right, we should check for devel libraries.
109 AC_CHECK_PROG([PERL],[perl],[perl],[no])
110 AM_CONDITIONAL([HAVE_PERL],[test "x$PERL" != "xno"])
111
112 dnl Check for Python (optional, for Python bindings).
113 dnl XXX This isn't quite right, we should check for devel libraries.
114 AC_CHECK_PROG([PYTHON],[python],[python],[no])
115 AM_CONDITIONAL([HAVE_PYTHON],[test "x$PYTHON" != "xno"])
116
117 dnl Run in subdirs.
118 AC_CONFIG_SUBDIRS([daemon])
119
120 dnl Produce output files.
121 AC_CONFIG_HEADERS([config.h])
122 AC_CONFIG_FILES([Makefile src/Makefile fish/Makefile examples/Makefile
123                  images/Makefile
124                  ocaml/Makefile ocaml/examples/Makefile
125                  perl/Makefile
126                  python/Makefile
127                  make-initramfs.sh update-initramfs.sh
128                  libguestfs.spec
129                  ocaml/META perl/Makefile.PL])
130 AC_OUTPUT
131
132 dnl WTF?
133 chmod +x make-initramfs.sh update-initramfs.sh