]> git.proxmox.com Git - mirror_lxc.git/blame_incremental - configure.in
Add a command line to setup/retrieve value of cgroup subsystem, lxc-cgroup -n <contai...
[mirror_lxc.git] / configure.in
... / ...
CommitLineData
1# -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
4AC_INIT([lxc], [0.3.0])
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
14AC_PROG_LIBTOOL
15AC_CHECK_HEADERS([linux/netlink.h linux/genetlink.h],, AC_MSG_ERROR([netlink headers not found]), [[]])
16AC_PROG_GCC_TRADITIONAL
17
18if test "x$GCC" = "xyes"; then
19 CFLAGS="$CFLAGS -Wall"
20fi
21
22AC_CONFIG_FILES([
23 Makefile
24 lxc.spec
25 config/Makefile
26 src/Makefile
27 src/lxc/Makefile
28 src/lxc/lxc-ps
29 etc/Makefile
30 etc/lxc-macvlan.conf
31 etc/lxc-no-netns.conf
32 etc/lxc-empty-netns.conf
33 etc/lxc-phys.conf
34 etc/lxc-veth.conf
35 etc/lxc-complex-config
36 test/Makefile
37])
38AC_CONFIG_COMMANDS([default],[[]],[[]])
39AC_OUTPUT