]> git.proxmox.com Git - mirror_lxc.git/blame - configure.in
Add a command line to setup/retrieve value of cgroup subsystem, lxc-cgroup -n <contai...
[mirror_lxc.git] / configure.in
CommitLineData
5e97c3fc 1# -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
7f118a6c 4AC_INIT([lxc], [0.3.0])
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
5e97c3fc 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
8642237a 19 CFLAGS="$CFLAGS -Wall"
5e97c3fc 20fi
21
22AC_CONFIG_FILES([
23 Makefile
24 lxc.spec
25 config/Makefile
26 src/Makefile
5e97c3fc 27 src/lxc/Makefile
28 src/lxc/lxc-ps
29 etc/Makefile
30 etc/lxc-macvlan.conf
31 etc/lxc-no-netns.conf
5f58350a 32 etc/lxc-empty-netns.conf
5e97c3fc 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