]> git.proxmox.com Git - mirror_lxc.git/blame - configure.in
Generate only if docbook is installed
[mirror_lxc.git] / configure.in
CommitLineData
5e97c3fc 1# -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
b7c9b199 4AC_INIT([lxc], [0.4.1])
5e97c3fc 5
6AC_CONFIG_SRCDIR([configure.in])
7AC_CONFIG_AUX_DIR([config])
8AM_CONFIG_HEADER([src/config.h])
9AM_INIT_AUTOMAKE([-Wno-portability])
10AC_CANONICAL_HOST
11AC_PROG_RANLIB
12AM_PROG_CC_C_O
13AC_GNU_SOURCE
c2cc9f0a 14AC_PROG_LIBTOOL
693dcea5 15AC_CHECK_PROG(SETCAP, setcap, yes, no)
d1de19ab 16AC_CHECK_PROG(DOCBOOK, docbook2man, yes, no)
17AM_CONDITIONAL(ENABLE_DOCBOOK, test x$DOCBOOK = xyes)
805415fc 18
86f7d054 19AC_CHECK_HEADERS([linux/netlink.h linux/genetlink.h], [], AC_MSG_ERROR([netlink headers not found]),
69437d52 20[#include <linux/types.h>
21#include <bits/sockaddr.h>
22#include <linux/socket.h>])
5e97c3fc 23AC_PROG_GCC_TRADITIONAL
24
25if test "x$GCC" = "xyes"; then
8642237a 26 CFLAGS="$CFLAGS -Wall"
5e97c3fc 27fi
28
65c46aef 29LXC_MAJOR_VERSION=$(echo $PACKAGE_VERSION | cut -d. -f1)
30LXC_MINOR_VERSION=$(echo $PACKAGE_VERSION | cut -d. -f2)
31LXC_MICRO_VERSION=$(echo $PACKAGE_VERSION | cut -d. -f3)
32
b7c9b199 33AC_ARG_ENABLE(network_destroy, [ --disable-network-destroy disable network destruction at exit [default=no]],, enable_network_destroy=yes)
34if test "x$enable_network_destroy" = "xyes"; then
35 CFLAGS="$CFLAGS -DNETWORK_DESTROY"
36fi
37
65c46aef 38AC_SUBST(LXC_MAJOR_VERSION)
39AC_SUBST(LXC_MINOR_VERSION)
40AC_SUBST(LXC_MICRO_VERSION)
41
5e97c3fc 42AC_CONFIG_FILES([
43 Makefile
44 lxc.spec
45 config/Makefile
d823d5b9 46
47 doc/Makefile
48 doc/lxc-create.sgml
49 doc/lxc-destroy.sgml
50 doc/lxc-execute.sgml
51 doc/lxc-start.sgml
52 doc/lxc-stop.sgml
53 doc/lxc-freeze.sgml
54 doc/lxc-unfreeze.sgml
55 doc/lxc-monitor.sgml
56 doc/lxc-wait.sgml
57 doc/lxc-ls.sgml
58 doc/lxc-ps.sgml
59
5e97c3fc 60 src/Makefile
5e97c3fc 61 src/lxc/Makefile
62 src/lxc/lxc-ps
d823d5b9 63 src/lxc/lxc-ls
805415fc 64 src/lxc/lxc-checkconfig
5e97c3fc 65 etc/Makefile
66 etc/lxc-macvlan.conf
67 etc/lxc-no-netns.conf
5f58350a 68 etc/lxc-empty-netns.conf
5e97c3fc 69 etc/lxc-phys.conf
70 etc/lxc-veth.conf
71 etc/lxc-complex-config
72 test/Makefile
73])
74AC_CONFIG_COMMANDS([default],[[]],[[]])
75AC_OUTPUT
805415fc 76
d1de19ab 77if test "x$DOCBOOK" = "xno"; then
78 AC_MSG_NOTICE([
79
80Warning:
81--------
82The docbook tool is not installed, the man pages won't be generated.
83
84])
85
86fi
87
805415fc 88if test "x$SETCAP" = "xno"; then
89 AC_MSG_NOTICE([
90
91Warning:
92--------
93
94The libcap-2 is not installed. That means the tools to
693dcea5 95set the privilege for the lxc commands are not available,
96that's ok, but you will need to run these commands as root
805415fc 97
98])
99
100else
101
102 AC_MSG_NOTICE([
103
104Advice:
105-------
106
107When installing the tools, it is adviced to install as
108root, so the privilege for the commands will be set and
109they will be usable by non-root user
110
111 make && sudo make install
112
113])
114
115fi