]> git.proxmox.com Git - mirror_lxc.git/blame - configure.ac
refactor AppArmor into LSM backend, add SELinux support
[mirror_lxc.git] / configure.ac
CommitLineData
5e97c3fc 1# -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
4213373f 4AC_INIT([lxc], [1.0.0.alpha1])
5e97c3fc 5
f8dafdbb 6AC_CONFIG_SRCDIR([configure.ac])
5e97c3fc 7AC_CONFIG_AUX_DIR([config])
067cfaeb 8AC_CONFIG_HEADERS([src/config.h])
d007f8ab 9AM_INIT_AUTOMAKE([-Wall -Werror -Wno-portability subdir-objects])
5e97c3fc 10AC_CANONICAL_HOST
5e97c3fc 11AM_PROG_CC_C_O
12AC_GNU_SOURCE
5c8f9bd8 13
8aa4885c
SG
14# Detect the distribution. This is used for the default configuration and
15# for some distro-specific build options.
6f75ba0b 16AC_MSG_CHECKING([host distribution])
8aa4885c 17AC_ARG_WITH(distro, AS_HELP_STRING([--with-distro=DISTRO], [Specify the Linux distribution to target: One of redhat, oracle, fedora, suse, gentoo, debian, arch, slackware, paldo, mandriva or pardus.]))
6f75ba0b
DE
18if test "z$with_distro" = "z"; then
19 with_distro=`lsb_release -is`
be2e4e54 20fi
6f75ba0b
DE
21if test "z$with_distro" = "z"; then
22 AC_CHECK_FILE(/etc/redhat-release,with_distro="redhat")
23 AC_CHECK_FILE(/etc/oracle-release,with_distro="oracle")
24 AC_CHECK_FILE(/etc/fedora-release,with_distro="fedora")
25 AC_CHECK_FILE(/etc/SuSE-release,with_distro="suse")
26 AC_CHECK_FILE(/etc/gentoo-release,with_distro="gentoo")
27 AC_CHECK_FILE(/etc/debian_version,with_distro="debian")
28 AC_CHECK_FILE(/etc/arch-release,with_distro="arch")
29 AC_CHECK_FILE(/etc/slackware-version,with_distro="slackware")
30 AC_CHECK_FILE(/etc/frugalware-release,with_distro="frugalware")
31 AC_CHECK_FILE(/etc/mandrakelinux-release, with_distro="mandriva")
32 AC_CHECK_FILE(/etc/mandriva-release,with_distro="mandriva")
33 AC_CHECK_FILE(/etc/pardus-release,with_distro="pardus")
34fi
35with_distro=`echo ${with_distro} | tr '[[:upper:]]' '[[:lower:]]'`
36
37if test "z$with_distro" = "z"; then
38 with_distro="unknown"
39fi
40case $with_distro in
41 ubuntu)
3a647d58 42 distroconf=default.conf.ubuntu
6f75ba0b
DE
43 ;;
44 redhat|fedora|oracle|oracleserver)
3a647d58 45 distroconf=default.conf.libvirt
6f75ba0b
DE
46 ;;
47 *)
48 echo -n "Linux distribution network config unknown, defaulting to lxc.network.type = empty"
3a647d58 49 distroconf=default.conf.unknown
6f75ba0b
DE
50 ;;
51esac
52AC_MSG_RESULT([$with_distro])
6f75ba0b 53AM_CONDITIONAL([HAVE_DEBIAN], [test x"$with_distro" = "xdebian" -o x"$with_distro" = "xubuntu"])
be2e4e54 54
c75c30ec 55# Detect the newuidmap tool (required for userns)
d155b47d
SH
56AC_CHECK_PROG([NEWUIDMAP], [newuidmap], [newuidmap])
57AM_CONDITIONAL([HAVE_NEWUIDMAP], [test -n "$NEWUIDMAP"])
58
8aa4885c 59# Allow disabling rpath
1c41ddcb
GK
60AC_ARG_ENABLE([rpath],
61 [AC_HELP_STRING([--disable-rpath], [do not set rpath in executables])],
62 [], [enable_rpath=yes])
1c41ddcb
GK
63AM_CONDITIONAL([ENABLE_RPATH], [test "x$enable_rpath" = "xyes"])
64
8aa4885c 65# Documentation (manpages)
5c8f9bd8 66AC_ARG_ENABLE([doc],
7f951458 67 [AC_HELP_STRING([--enable-doc], [make mans (requires docbook2man or docbook2x-man to be installed) [default=auto]])],
5c8f9bd8
AN
68 [], [enable_doc=auto])
69
70if test "x$enable_doc" = "xyes" -o "x$enable_doc" = "xauto"; then
7822022c 71 db2xman=""
7f951458 72 dbparsers="docbook2x-man db2x_docbook2man docbook2man"
69fe23ff 73
7822022c 74 AC_MSG_CHECKING(for docbook2x-man)
69fe23ff 75 for name in ${dbparsers}; do
7822022c
SG
76 if "$name" --help >/dev/null 2>&1; then
77 db2xman="$name"
78 break;
79 fi
80 done
81
82 if test -n "${db2xman}"; then
8aa4885c 83 AC_MSG_RESULT([${db2xman}])
7822022c 84 else
8aa4885c 85 AC_MSG_RESULT([no])
7822022c
SG
86 if test "x$enable_doc" = "xyes"; then
87 AC_MSG_ERROR([docbook2x-man required by man request, but not found])
88 fi
89 fi
90
91 AC_SUBST(db2xman)
5c8f9bd8 92fi
8aa4885c 93AM_CONDITIONAL([ENABLE_DOCBOOK], [test "x$db2xman" != "x"])
7cb14f34 94AM_CONDITIONAL([USE_DOCBOOK2X], [test "x$db2xman" != "xdocbook2man"])
5c8f9bd8 95
7f951458
DE
96if test "x$db2xman" = "xdocbook2man"; then
97 docdtd="\"-//Davenport//DTD DocBook V3.0//EN\""
98else
99 docdtd="\"-//OASIS//DTD DocBook XML\" \"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd\""
100fi
101AC_SUBST(docdtd)
102
8aa4885c 103# Apparmor
e767dd55
SH
104AC_ARG_ENABLE([apparmor],
105 [AC_HELP_STRING([--enable-apparmor], [enable apparmor])],
106 [], [enable_apparmor=check])
107
108if test "$enable_apparmor" = "check" ; then
109 AC_CHECK_LIB([apparmor],[aa_change_profile],[enable_apparmor=yes], [enable_apparmor=no])
110fi
e767dd55
SH
111AM_CONDITIONAL([ENABLE_APPARMOR], [test "x$enable_apparmor" = "xyes"])
112
3ce74686
SH
113AC_CHECK_LIB([gnutls], [gnutls_hash_fast])
114
e075f5d9 115AM_COND_IF([ENABLE_APPARMOR],
8aa4885c
SG
116 [AC_CHECK_HEADER([sys/apparmor.h],[],[AC_MSG_ERROR([You must install the AppArmor development package in order to compile lxc])])
117 AC_CHECK_LIB([apparmor], [aa_change_profile],[],[AC_MSG_ERROR([You must install the AppArmor development package in order to compile lxc])])
118 AC_SUBST([APPARMOR_LIBS], [-lapparmor])])
e075f5d9 119
fe4de9a6
DE
120# SELinux
121AC_ARG_ENABLE([selinux],
122 [AC_HELP_STRING([--enable-selinux], [enable SELinux support])],
123 [], [enable_selinux=check])
124
125if test "x$enable_selinux" = xcheck; then
126 AC_CHECK_LIB([selinux],[setexeccon_raw],[enable_selinux=yes],[enable_selinux=no])
127fi
128AM_CONDITIONAL([ENABLE_SELINUX], [test "x$enable_selinux" = "xyes"])
129AM_COND_IF([ENABLE_SELINUX],
130 [AC_CHECK_HEADER([selinux/selinux.h],[],[AC_MSG_ERROR([You must install the SELinux development package in order to compile lxc])])
131 AC_CHECK_LIB([selinux], [setexeccon_raw],[],[AC_MSG_ERROR([You must install the SELinux development package in order to compile lxc])])
132 AC_SUBST([SELINUX_LIBS])])
133
8aa4885c 134# Seccomp syscall filter
e767dd55
SH
135AC_ARG_ENABLE([seccomp],
136 [AC_HELP_STRING([--enable-seccomp], [enable seccomp])],
137 [], [enable_seccomp=check])
138
139if test "$enable_seccomp" = "check" ; then
140 AC_CHECK_LIB([seccomp],[seccomp_init],[enable_seccomp=yes],[enable_seccomp=no])
141fi
e767dd55
SH
142AM_CONDITIONAL([ENABLE_SECCOMP], [test "x$enable_seccomp" = "xyes"])
143
8f2c3a70 144AM_COND_IF([ENABLE_SECCOMP],
8aa4885c
SG
145 [AC_CHECK_HEADER([seccomp.h],[],[AC_MSG_ERROR([You must install the seccomp development package in order to compile lxc])])
146 AC_CHECK_LIB([seccomp], [seccomp_init],[],[AC_MSG_ERROR([You must install the seccomp development package in order to compile lxc])])
147 AC_SUBST([SECCOMP_LIBS], [-lseccomp])])
8f2c3a70 148
769872f9
SH
149# HAVE_SCMP_FILTER_CTX=1 will tell us we have libseccomp api >= 1.0.0
150AC_CHECK_TYPES([scmp_filter_ctx], [], [], [#include <seccomp.h>])
151
8aa4885c 152# Configuration examples
3fb0a9bb
AN
153AC_ARG_ENABLE([examples],
154 [AC_HELP_STRING([--disable-examples], [do not install configuration examples])],
155 [], [enable_examples=yes])
3fb0a9bb
AN
156AM_CONDITIONAL([ENABLE_EXAMPLES], [test "x$enable_examples" = "xyes"])
157
8aa4885c 158# Python3 module and scripts
be2e4e54
SG
159AC_ARG_ENABLE([python],
160 [AC_HELP_STRING([--enable-python], [enable python binding])],
161 [enable_python=yes], [enable_python=no])
be2e4e54
SG
162AM_CONDITIONAL([ENABLE_PYTHON], [test "x$enable_python" = "xyes"])
163
164AM_COND_IF([ENABLE_PYTHON],
8aa4885c 165 [AM_PATH_PYTHON([3.2], [], [AC_MSG_ERROR([You must install python3])])
59ec0a36 166 PKG_CHECK_MODULES([PYTHONDEV], [python3 >= 3.2],[],[AC_MSG_ERROR([You must install python3-dev])])
8aa4885c 167 AC_DEFINE_UNQUOTED([ENABLE_PYTHON], 1, [Python3 is available])])
be2e4e54 168
3a1675bf
DE
169# Not in older autoconf versions
170# AS_VAR_COPY(DEST, SOURCE)
171# -------------------------
172# Set the polymorphic shell variable DEST to the contents of the polymorphic
173# shell variable SOURCE.
174m4_ifdef([AS_VAR_COPY], [],
175[AC_DEFUN([AS_VAR_COPY],
176 [AS_LITERAL_IF([$1[]$2], [$1=$$2], [eval $1=\$$2])])
177])
178
12e93188
NC
179dnl PKG_CHECK_VAR was introduced with pkg-config 0.28
180m4_ifdef([PKG_CHECK_VAR], [],
181[AC_DEFUN([PKG_CHECK_VAR],
182 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
183 AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl
184 _PKG_CONFIG([$1], [variable="][$3]["], [$2])
185 AS_VAR_COPY([$1], [pkg_cv_][$1])
186 AS_VAR_IF([$1], [""], [$5], [$4])dnl
187 ])# PKG_CHECK_VAR
188])
f080ffd7 189
12e93188 190# Lua module and scripts
f080ffd7
DE
191AC_ARG_ENABLE([lua],
192 [AC_HELP_STRING([--enable-lua], [enable lua binding])],
f756cda0 193 [], [enable_lua=check])
f080ffd7 194
12e93188
NC
195AC_ARG_WITH([lua-pc],
196 [AS_HELP_STRING(
197 [--with-lua-pc=PKG],
198 [Specify pkg-config package name for lua]
f756cda0
NC
199 )], [], [with_lua_pc=no])
200
201if test "x$enable_lua" = "xyes" -a "x$with_lua_pc" != "xno"; then
202 # exit with error if not found
203 PKG_CHECK_MODULES([LUA], [$with_lua_pc], [LUAPKGCONFIG=$with_lua_pc])
204fi
205
206if test "x$enable_lua" = "xcheck" -a "x$with_lua_pc" != "xno"; then
207 PKG_CHECK_MODULES([LUA], [$with_lua_pc],
208 [LUAPKGCONFIG=$with_lua_pc
209 enable_lua=yes],
210 [enable_lua=no])
211fi
212
213if test "x$enable_lua" != "xno"; then
214 PKG_CHECK_MODULES([LUA], [lua], [LUAPKGCONFIG=lua],
215 [PKG_CHECK_MODULES([LUA], [lua5.2], [LUAPKGCONFIG=lua5.2],
216 [PKG_CHECK_MODULES([LUA], [lua5.1], [LUAPKGCONFIG=lua5.1],
217 [AS_IF([test "x$enable_lua" = "xyes"],
218 [AC_MSG_ERROR([Lua not found. Please use --with-lua-pc=PKG])],
219 [enable_lua=no])]
220 )]
221 )])
222 AS_IF([test "x$LUAPKGCONFIG" != "x"], [enable_lua=yes])
223fi
12e93188
NC
224
225AM_CONDITIONAL([ENABLE_LUA],
69c757b3 226 [test "x$enable_lua" = "xyes"])
f080ffd7
DE
227
228AM_COND_IF([ENABLE_LUA],
f756cda0 229 [AC_MSG_CHECKING([Lua version])
12e93188
NC
230 PKG_CHECK_VAR([LUA_VERSION], [$LUAPKGCONFIG], [V],,
231 [PKG_CHECK_VAR([LUA_VERSION], [$LUAPKGCONFIG], [major_version])])
232 AC_MSG_RESULT([$LUA_VERSION])
233 PKG_CHECK_VAR([LUA_INSTALL_CMOD], [$LUAPKGCONFIG], [INSTALL_CMOD],,
234 [LUA_INSTALL_CMOD=$libdir/lua/$LUA_VERSION])
235 PKG_CHECK_VAR([LUA_INSTALL_LMOD], [$LUAPKGCONFIG], [INSTALL_LMOD],,
236 [LUA_INSTALL_LMOD=$datadir/lua/$LUA_VERSION])
237 ])
f080ffd7 238
8aa4885c 239# Optional test binaries
525421c9
SG
240AC_ARG_ENABLE([tests],
241 [AC_HELP_STRING([--enable-tests], [build test/example binaries])],
242 [enable_tests=yes], [enable_tests=no])
525421c9
SG
243AM_CONDITIONAL([ENABLE_TESTS], [test "x$enable_tests" = "xyes"])
244
8aa4885c 245# LXC container path, where the containers are actually stored
fbf5de31 246# This is overridden by an entry in the file called LXCCONF
2a59a681 247# (i.e. /etc/lxc/lxc.conf)
aef4ebcf
AN
248AC_ARG_WITH([config-path],
249 [AC_HELP_STRING(
250 [--with-config-path=dir],
e892973e 251 [lxc configuration repository path]
1c41ddcb 252 )], [], [with_config_path=['${localstatedir}/lib/lxc']])
aef4ebcf 253
2a59a681
SH
254# The path of the global lxc configuration file.
255AC_ARG_WITH([global-conf],
256 [AC_HELP_STRING(
257 [--with-global-conf=dir],
258 [global lxc configuration file]
259 )], [], [with_global_conf=['${sysconfdir}/lxc/lxc.conf']])
260
c75c30ec 261# The path of the userns network configuration file
070a4b8e
SH
262AC_ARG_WITH([usernic-conf],
263 [AC_HELP_STRING(
264 [--with-usernic-conf],
265 [user network interface configuration file]
266 )], [], [with_usernic_conf=['${sysconfdir}/lxc/lxc-usernet']])
267
c75c30ec 268# The path of the runtime usernic database
070a4b8e
SH
269AC_ARG_WITH([usernic-db],
270 [AC_HELP_STRING(
271 [--with-usernic-db],
272 [lxc user nic database]
273 )], [], [with_usernic_db=['/run/lxc/nics']])
274
8aa4885c 275# Rootfs path, where the container mount structure is assembled
196db713
DL
276AC_ARG_WITH([rootfs-path],
277 [AC_HELP_STRING(
278 [--with-rootfs-path=dir],
279 [lxc rootfs mount point]
1c41ddcb 280 )], [], [with_rootfs_path=['${libdir}/lxc/rootfs']])
c75c30ec 281
6e16552d
CS
282# cgroup pattern specification
283AC_ARG_WITH([cgroup-pattern],
284 [AC_HELP_STRING(
285 [--with-cgroup-pattern=pattern],
286 [pattern for container cgroups]
287 )], [], [with_cgroup_pattern=['/lxc/%n']])
196db713 288
5e1e7aaf
SH
289# Container log path. By default, use $lxcpath.
290AC_MSG_CHECKING([Whether to place logfiles in container config path])
291AC_ARG_ENABLE([configpath-log],
292 [AC_HELP_STRING([--enable-configpath-log], [use logfiles in config path])],
293 [use_configpath_logs=yes], [use_configpath_logs=no])
294AC_MSG_RESULT([$use_configpath_logs])
295AM_CONDITIONAL([USE_CONFIGPATH_LOGS], [test "$use_configpath_logs" = "yes"])
296
297if test "$use_configpath_logs" = "yes"; then
298 default_log_path="${with_config_path}"
299else
89d556d8 300 default_log_path="${localstatedir}/log/lxc"
5e1e7aaf
SH
301fi
302
303AC_ARG_WITH([log-path],
304 [AC_HELP_STRING(
305 [--with-log-path=dir],
306 [per container log path]
307 )], [], [with_log_path=['${default_log_path}']])
308
8aa4885c
SG
309# Expand some useful variables
310AS_AC_EXPAND(PREFIX, "$prefix")
311AS_AC_EXPAND(LIBDIR, "$libdir")
312AS_AC_EXPAND(BINDIR, "$bindir")
313AS_AC_EXPAND(LIBEXECDIR, "$libexecdir")
314AS_AC_EXPAND(INCLUDEDIR, "$includedir")
315AS_AC_EXPAND(SYSCONFDIR, "$sysconfdir")
0a18b545 316AS_AC_EXPAND(LXC_DEFAULT_CONFIG, "$sysconfdir/lxc/default.conf")
8aa4885c
SG
317AS_AC_EXPAND(DATADIR, "$datadir")
318AS_AC_EXPAND(LOCALSTATEDIR, "$localstatedir")
319AS_AC_EXPAND(DOCDIR, "$docdir")
3a647d58 320AS_AC_EXPAND(LXC_DISTRO_CONF, "$distroconf")
aef4ebcf 321AS_AC_EXPAND(LXC_GENERATE_DATE, "$(date)")
8aa4885c 322AS_AC_EXPAND(LXCPATH, "$with_config_path")
2a59a681 323AS_AC_EXPAND(LXC_GLOBAL_CONF, "$with_global_conf")
070a4b8e
SH
324AS_AC_EXPAND(LXC_USERNIC_CONF, "$with_usernic_conf")
325AS_AC_EXPAND(LXC_USERNIC_DB, "$with_usernic_db")
8aa4885c
SG
326AS_AC_EXPAND(LXCROOTFSMOUNT, "$with_rootfs_path")
327AS_AC_EXPAND(LXCTEMPLATEDIR, "$datadir/lxc/templates")
906f8c4d 328AS_AC_EXPAND(LXCHOOKDIR, "$datadir/lxc/hooks")
8aa4885c 329AS_AC_EXPAND(LXCINITDIR, "$libexecdir")
5e1e7aaf 330AS_AC_EXPAND(LOGPATH, "$with_log_path")
6e16552d 331AC_SUBST(DEFAULT_CGROUP_PATTERN, ["$with_cgroup_pattern"])
881450bb 332
8aa4885c 333# Check for some standard kernel headers
910bb4fa 334AC_CHECK_HEADERS([linux/unistd.h linux/netlink.h linux/genetlink.h],
8aa4885c
SG
335 [],
336 AC_MSG_ERROR([Please install the Linux kernel headers.]),
337 [#include <sys/socket.h>])
35f549fe 338
495d2046
SG
339# Allow disabling libcap support
340AC_ARG_ENABLE([capabilities],
341 [AC_HELP_STRING([--disable-capabilities], [disable kernel capabilities])],
342 [], [enable_capabilities=yes])
343
8aa4885c 344# Check for libcap support
495d2046
SG
345if test "x$enable_capabilities" = "xyes"; then
346 AC_CHECK_LIB(cap,cap_set_proc,caplib=yes,caplib=no)
347 AC_MSG_CHECKING([linux capabilities])
348 if test "x$caplib" = "xyes" ; then
349 CAP_LIBS="-lcap"
350 AC_MSG_RESULT([$CAP_LIBS])
351 else
352 AC_MSG_RESULT([no])
353 AC_MSG_ERROR([You are missing libcap support. If you really want to build without kernel capabilities, use --disable-capabilities])
354 fi
0af683cf 355else
495d2046 356 CAP_LIBS=""
0af683cf 357fi
358AC_SUBST([CAP_LIBS])
35f549fe 359
a6168a17
SG
360# Check for alternate C libraries
361AC_MSG_CHECKING(for bionic libc)
362AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
8aa4885c 363 [[#ifndef __ANDROID__
a6168a17
SG
364error: Not bionic!
365#endif]])],
8aa4885c
SG
366 [is_bionic=yes],
367 [is_bionic=no])
a6168a17 368if test "x$is_bionic" = "xyes"; then
8aa4885c
SG
369 AC_DEFINE([IS_BIONIC], 1, [bionic libc])
370 AC_MSG_RESULT([yes])
a6168a17 371else
8aa4885c 372 AC_MSG_RESULT([no])
a6168a17
SG
373fi
374AM_CONDITIONAL([IS_BIONIC], [test "x$is_bionic" = "xyes"])
375
656994bb
MH
376# Some systems lack PR_CAPBSET_DROP definition => HAVE_DECL_PR_CAPBSET_DROP
377AC_CHECK_DECLS([PR_CAPBSET_DROP], [], [], [#include <sys/prctl.h>])
378
e827ff7e 379# Check for some headers
4ba0d9af 380AC_CHECK_HEADERS([sys/signalfd.h pty.h ifaddrs.h sys/capability.h sys/personality.h utmpx.h sys/timerfd.h])
ff218c25 381
2d76d1d7 382# Check for some syscalls functions
511a6936 383AC_CHECK_FUNCS([setns pivot_root sethostname unshare rand_r confstr])
2d76d1d7 384
e827ff7e 385# Check for some functions
740ee8c7 386AC_CHECK_LIB(util, openpty)
edaf8b1b 387AC_CHECK_FUNCS([openpty hasmntopt setmntent endmntent])
1ba0013f
SG
388AC_CHECK_FUNCS([getline],
389 AM_CONDITIONAL(HAVE_GETLINE, true)
390 AC_DEFINE(HAVE_GETLINE,1,[Have getline]),
391 AM_CONDITIONAL(HAVE_GETLINE, false))
392AC_CHECK_FUNCS([fgetln],
393 AM_CONDITIONAL(HAVE_FGETLN, true)
394 AC_DEFINE(HAVE_FGETLN,1,[Have fgetln]),
395 AM_CONDITIONAL(HAVE_FGETLN, false))
396
c9a84173
SG
397# Check for some libraries
398AC_SEARCH_LIBS(sem_open, [rt pthread])
336d5469 399AC_SEARCH_LIBS(clock_gettime, [rt])
c9a84173 400
8aa4885c 401# Check for some standard binaries
5e97c3fc 402AC_PROG_GCC_TRADITIONAL
95a717e9 403AC_PROG_SED
5e97c3fc 404
405if test "x$GCC" = "xyes"; then
8aa4885c 406 CFLAGS="$CFLAGS -Wall -Werror"
5e97c3fc 407fi
408
8aa4885c 409# Files requiring some variable expansion
5e97c3fc 410AC_CONFIG_FILES([
288063bd 411 Makefile
b6345ba1 412 lxc.pc
5e97c3fc 413 lxc.spec
288063bd 414 config/Makefile
d823d5b9 415
288063bd 416 doc/Makefile
4019712d
SG
417 doc/legacy/lxc-ls.sgml
418 doc/lxc-attach.sgml
419 doc/lxc-cgroup.sgml
420 doc/lxc-checkconfig.sgml
421 doc/lxc-checkpoint.sgml
11cddd70 422 doc/lxc-clone.sgml
4019712d 423 doc/lxc-console.sgml
d823d5b9 424 doc/lxc-create.sgml
425 doc/lxc-destroy.sgml
4019712d 426 doc/lxc-device.sgml
d823d5b9 427 doc/lxc-execute.sgml
d823d5b9 428 doc/lxc-freeze.sgml
4019712d
SG
429 doc/lxc-info.sgml
430 doc/lxc-kill.sgml
d823d5b9 431 doc/lxc-ls.sgml
4019712d
SG
432 doc/lxc-monitor.sgml
433 doc/lxc-netstat.sgml
d823d5b9 434 doc/lxc-ps.sgml
4019712d 435 doc/lxc-restart.sgml
813a4837 436 doc/lxc-snapshot.sgml
4019712d
SG
437 doc/lxc-start-ephemeral.sgml
438 doc/lxc-start.sgml
439 doc/lxc-stop.sgml
f080ffd7 440 doc/lxc-top.sgml
4019712d
SG
441 doc/lxc-unfreeze.sgml
442 doc/lxc-unshare.sgml
443 doc/lxc-version.sgml
444 doc/lxc-wait.sgml
445
8a67a2b2 446 doc/lxc.conf.sgml
8b8b04f8 447 doc/lxc.sgml
10fba81b 448 doc/common_options.sgml
99e4008c 449 doc/see_also.sgml
d823d5b9 450
baf6671f
DL
451 doc/rootfs/Makefile
452
0f71d073
DL
453 doc/examples/Makefile
454 doc/examples/lxc-macvlan.conf
26c39028 455 doc/examples/lxc-vlan.conf
0f71d073
DL
456 doc/examples/lxc-no-netns.conf
457 doc/examples/lxc-empty-netns.conf
458 doc/examples/lxc-phys.conf
459 doc/examples/lxc-veth.conf
c553a9c2 460 doc/examples/lxc-complex.conf
0f71d073 461
57da8c32
KY
462 doc/ja/Makefile
463 doc/ja/legacy/lxc-ls.sgml
464 doc/ja/lxc-attach.sgml
465 doc/ja/lxc-cgroup.sgml
466 doc/ja/lxc-checkconfig.sgml
467 doc/ja/lxc-checkpoint.sgml
468 doc/ja/lxc-clone.sgml
469 doc/ja/lxc-console.sgml
470 doc/ja/lxc-create.sgml
471 doc/ja/lxc-destroy.sgml
472 doc/ja/lxc-device.sgml
473 doc/ja/lxc-execute.sgml
474 doc/ja/lxc-freeze.sgml
475 doc/ja/lxc-info.sgml
476 doc/ja/lxc-kill.sgml
477 doc/ja/lxc-ls.sgml
478 doc/ja/lxc-monitor.sgml
479 doc/ja/lxc-netstat.sgml
480 doc/ja/lxc-ps.sgml
481 doc/ja/lxc-restart.sgml
482 doc/ja/lxc-start-ephemeral.sgml
483 doc/ja/lxc-start.sgml
484 doc/ja/lxc-stop.sgml
485 doc/ja/lxc-top.sgml
486 doc/ja/lxc-unfreeze.sgml
487 doc/ja/lxc-unshare.sgml
488 doc/ja/lxc-version.sgml
489 doc/ja/lxc-wait.sgml
490
491 doc/ja/lxc.conf.sgml
492 doc/ja/lxc.sgml
493 doc/ja/common_options.sgml
494 doc/ja/see_also.sgml
495
906f8c4d
SG
496 hooks/Makefile
497
c01d62f2 498 templates/Makefile
58a46e06 499 templates/lxc-cirros
c01d62f2 500 templates/lxc-debian
7c382572 501 templates/lxc-ubuntu
d1458ac8 502 templates/lxc-ubuntu-cloud
c840b37d 503 templates/lxc-opensuse
c01d62f2
DL
504 templates/lxc-busybox
505 templates/lxc-fedora
708f4a80 506 templates/lxc-oracle
262f4e48 507 templates/lxc-altlinux
c01d62f2 508 templates/lxc-sshd
f6267d90 509 templates/lxc-archlinux
2a9a0a08 510 templates/lxc-alpine
c9844b87 511
288063bd 512 src/Makefile
5e97c3fc 513 src/lxc/Makefile
514 src/lxc/lxc-ps
9d0195cb 515 src/lxc/lxc-netstat
237315ff 516 src/lxc/lxc-checkconfig
bcd952a1 517 src/lxc/lxc-version
5b12984b 518 src/lxc/lxc-start-ephemeral
6a85cf91 519 src/lxc/legacy/lxc-ls
2a59a681 520 src/lxc/lxc.functions
c9844b87 521
be2e4e54
SG
522 src/python-lxc/Makefile
523
f080ffd7
DE
524 src/lua-lxc/Makefile
525
72d0e1cb 526 src/tests/Makefile
5e97c3fc 527])
528AC_CONFIG_COMMANDS([default],[[]],[[]])
529AC_OUTPUT