]> git.proxmox.com Git - mirror_lxc.git/blame - configure.ac
Merge pull request #2048 from duguhaotian/master
[mirror_lxc.git] / configure.ac
CommitLineData
5e97c3fc 1# -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
b737ac4c 4m4_define([lxc_devel], 1)
99d78dcc 5m4_define([lxc_version_major], 2)
e94087c9 6m4_define([lxc_version_minor], 1)
9588a6ce 7m4_define([lxc_version_micro], 0)
823765e5 8m4_define([lxc_version_beta], [])
26419a7a
SG
9
10m4_define([lxc_abi_major], 1)
e94087c9 11m4_define([lxc_abi_minor], 3)
26419a7a
SG
12m4_define([lxc_abi_micro], 0)
13m4_define([lxc_abi], [lxc_abi_major.lxc_abi_minor.lxc_abi_micro])
9588a6ce
SH
14
15m4_define([lxc_version_base], [lxc_version_major.lxc_version_minor.lxc_version_micro])
16m4_define([lxc_version],
17 [ifelse(lxc_version_beta, [], [lxc_version_base], [lxc_version_base.lxc_version_beta])])
18
19AC_INIT([lxc], [lxc_version])
ddb93593
SG
20
21# We need pkg-config
22PKG_PROG_PKG_CONFIG
23
9588a6ce
SH
24AC_SUBST(LXC_VERSION_BASE, lxc_version_base)
25AC_SUBST(LXC_VERSION_BETA, lxc_version_beta)
5e97c3fc 26
a22185dd
ÇO
27AC_SUBST([LXC_VERSION_MAJOR], [lxc_version_major])
28AC_SUBST([LXC_VERSION_MINOR], [lxc_version_minor])
29AC_SUBST([LXC_VERSION_MICRO], [lxc_version_micro])
30AC_SUBST([LXC_VERSION], [lxc_version])
d2d6b991 31AC_SUBST([LXC_DEVEL], [lxc_devel])
a22185dd 32
26419a7a
SG
33AC_SUBST([LXC_ABI_MAJOR], [lxc_abi_major])
34AC_SUBST([LXC_ABI_MINOR], [lxc_abi_minor])
35AC_SUBST([LXC_ABI_MICRO], [lxc_abi_micro])
36AC_SUBST([LXC_ABI], [lxc_abi])
37
f8dafdbb 38AC_CONFIG_SRCDIR([configure.ac])
5e97c3fc 39AC_CONFIG_AUX_DIR([config])
067cfaeb 40AC_CONFIG_HEADERS([src/config.h])
d007f8ab 41AM_INIT_AUTOMAKE([-Wall -Werror -Wno-portability subdir-objects])
5e97c3fc 42AC_CANONICAL_HOST
5e97c3fc 43AM_PROG_CC_C_O
44AC_GNU_SOURCE
5c8f9bd8 45
26419a7a
SG
46# libtool
47LT_INIT
48AC_SUBST([LIBTOOL_DEPS])
49
8aa4885c
SG
50# Detect the distribution. This is used for the default configuration and
51# for some distro-specific build options.
6f75ba0b 52AC_MSG_CHECKING([host distribution])
5c60f990 53AC_ARG_WITH(distro, AS_HELP_STRING([--with-distro=DISTRO], [Specify the Linux distribution to target: One of redhat, oracle, centos, fedora, suse, gentoo, debian, arch, slackware, plamo, paldo, openmandriva, pardus, sparclinux, altlinux.]))
5a15791e 54if type lsb_release >/dev/null 2>&1 && test "z$with_distro" = "z"; then
6f75ba0b 55 with_distro=`lsb_release -is`
be2e4e54 56fi
6f75ba0b
DE
57if test "z$with_distro" = "z"; then
58 AC_CHECK_FILE(/etc/redhat-release,with_distro="redhat")
59 AC_CHECK_FILE(/etc/oracle-release,with_distro="oracle")
beabd0a2 60 AC_CHECK_FILE(/etc/sparclinux-release,with_distro="sparclinux")
164105f6 61 AC_CHECK_FILE(/etc/centos-release,with_distro="centos")
6f75ba0b
DE
62 AC_CHECK_FILE(/etc/fedora-release,with_distro="fedora")
63 AC_CHECK_FILE(/etc/SuSE-release,with_distro="suse")
64 AC_CHECK_FILE(/etc/gentoo-release,with_distro="gentoo")
65 AC_CHECK_FILE(/etc/debian_version,with_distro="debian")
66 AC_CHECK_FILE(/etc/arch-release,with_distro="arch")
67 AC_CHECK_FILE(/etc/slackware-version,with_distro="slackware")
af2d9fad 68 AC_CHECK_FILE(/etc/plamo-version,with_distro="plamo")
6f75ba0b 69 AC_CHECK_FILE(/etc/frugalware-release,with_distro="frugalware")
6e7e54d9
AK
70 AC_CHECK_FILE(/etc/mandrakelinux-release, with_distro="openmandriva")
71 AC_CHECK_FILE(/etc/mandriva-release,with_distro="openmandriva")
6f75ba0b 72 AC_CHECK_FILE(/etc/pardus-release,with_distro="pardus")
5c60f990 73 AC_CHECK_FILE(/etc/altlinux-release,with_distro="altlinux")
487ea5f6 74 AC_CHECK_FILE(/etc/pld-release,with_distro="pld")
6f75ba0b
DE
75fi
76with_distro=`echo ${with_distro} | tr '[[:upper:]]' '[[:lower:]]'`
77
beabd0a2
WC
78if test "z$with_distro" = "zforsparc"; then
79 with_distro="sparclinux"
80fi
81
6f75ba0b
DE
82if test "z$with_distro" = "z"; then
83 with_distro="unknown"
84fi
85case $with_distro in
1c1bb85a 86 ubuntu|raspbian)
0af99319
MW
87 distroconf=default.conf.lxcbr
88 distrosysconf="$sysconfdir/default"
6f75ba0b 89 ;;
487ea5f6 90 redhat|centos|fedora|oracle|oracleserver|sparclinux|altlinux|suse|opensuse*|plamo|pld)
0af99319
MW
91 distroconf=default.conf.lxcbr
92 distrosysconf="$sysconfdir/sysconfig"
6f75ba0b
DE
93 ;;
94 *)
3a647d58 95 distroconf=default.conf.unknown
0af99319 96 distrosysconf="$sysconfdir/default"
6f75ba0b
DE
97 ;;
98esac
99AC_MSG_RESULT([$with_distro])
1c1bb85a 100AM_CONDITIONAL([HAVE_DEBIAN], [test x"$with_distro" = "xdebian" -o x"$with_distro" = "xubuntu" -o x"$with_distro" = "xraspbian"])
025f59ab 101AM_CONDITIONAL([DISTRO_UBUNTU], [test "x$with_distro" = "xubuntu"])
be2e4e54 102
d79067a7
DM
103AC_CONFIG_LINKS([config/etc/default.conf:config/etc/${distroconf}])
104
420dfb59
DE
105# Check for init system type
106AC_MSG_CHECKING([for init system type])
107AC_ARG_WITH([init-script],
89f79f6b 108 [AC_HELP_STRING([--with-init-script@<:@=TYPE@<:@,TYPE,...@:>@@:>@],
dc068290 109 [Type(s) of init script to install: sysvinit, systemd, upstart,
89f79f6b 110 distro @<:@default=distro@:>@])],[],[with_init_script=distro])
420dfb59 111case "$with_init_script" in
420dfb59
DE
112 distro)
113 case $with_distro in
5c60f990 114 fedora|altlinux|opensuse*)
420dfb59
DE
115 init_script=systemd
116 ;;
234f9815 117 redhat|oracle|oracleserver|sparclinux|plamo)
dc068290 118 init_script=sysvinit
420dfb59 119 ;;
234f9815 120 centos)
121 init_script=sysvinit,systemd
122 ;;
82b47911 123 debian|raspbian|ubuntu)
882ab607 124 init_script=upstart,systemd
420dfb59 125 ;;
487ea5f6
ER
126 pld)
127 init_script=sysvinit,upstart,systemd
128 ;;
420dfb59 129 *)
dc068290
SG
130 echo -n "Linux distribution init system unknown."
131 init_script=
420dfb59
DE
132 ;;
133 esac
134 ;;
135 *)
89f79f6b 136 init_script=$with_init_script
420dfb59
DE
137 ;;
138esac
89f79f6b
DE
139
140# Check valid init systems were given, run in subshell so we don't mess up IFS
141(IFS="," ; for init_sys in $init_script;
142do
143 case "$init_sys" in
dc068290 144 none|sysvinit|systemd|upstart)
89f79f6b
DE
145 ;;
146 *)
147 exit 1
148 ;;
149 esac
150done) || AC_MSG_ERROR([Unknown init system type in $init_script])
151
dc068290 152AM_CONDITIONAL([INIT_SCRIPT_SYSV], [echo "$init_script" |grep -q "sysvinit"])
89f79f6b
DE
153AM_CONDITIONAL([INIT_SCRIPT_SYSTEMD], [echo "$init_script" |grep -q "systemd"])
154AM_CONDITIONAL([INIT_SCRIPT_UPSTART], [echo "$init_script" |grep -q "upstart"])
420dfb59
DE
155AC_MSG_RESULT($init_script)
156
213b0fe0
MP
157# systemd unit dir
158AC_ARG_WITH([systemdsystemunitdir],
159 AS_HELP_STRING([--with-systemdsystemunitdir=DIR], [Directory for systemd service files]),
160 [],
161 [with_systemdsystemunitdir=$($PKG_CONFIG --variable=systemdsystemunitdir systemd)])
162if test -z "$with_systemdsystemunitdir"; then
163 with_systemdsystemunitdir=/lib/systemd/system
164fi
165if test "x$with_systemdsystemunitdir" != "xno"; then
166 AC_SUBST([SYSTEMD_UNIT_DIR], [$with_systemdsystemunitdir])
167fi
168
e9f34eb4
JP
169AC_ARG_ENABLE([werror],
170 [AC_HELP_STRING([--disable-werror],
171 [do not treat warnings as errors])],
172 [], [enable_werror=yes])
173
d0a6bd39
CB
174# Allow enabling deprecated executables
175AC_ARG_ENABLE([deprecated],
176 [AC_HELP_STRING([--enable-deprecated],
177 [enable deprecated executables [default=no]])],
178 [], [enable_deprecated=false])
179AM_CONDITIONAL([ENABLE_DEPRECATED], [test "x$enable_deprecated" = "xyes"])
180
8aa4885c 181# Allow disabling rpath
1c41ddcb 182AC_ARG_ENABLE([rpath],
f91d5e4e
SG
183 [AC_HELP_STRING([--enable-rpath], [set rpath in executables [default=no]])],
184 [], [enable_rpath=no])
1c41ddcb
GK
185AM_CONDITIONAL([ENABLE_RPATH], [test "x$enable_rpath" = "xyes"])
186
8aa4885c 187# Documentation (manpages)
5c8f9bd8 188AC_ARG_ENABLE([doc],
f91d5e4e 189 [AC_HELP_STRING([--enable-doc], [make man pages [default=auto]])],
5c8f9bd8
AN
190 [], [enable_doc=auto])
191
192if test "x$enable_doc" = "xyes" -o "x$enable_doc" = "xauto"; then
7822022c 193 db2xman=""
487ea5f6 194 dbparsers="docbook2X2man docbook2x-man db2x_docbook2man docbook2man docbook-to-man"
69fe23ff 195
7822022c 196 AC_MSG_CHECKING(for docbook2x-man)
69fe23ff 197 for name in ${dbparsers}; do
7822022c
SG
198 if "$name" --help >/dev/null 2>&1; then
199 db2xman="$name"
200 break;
201 fi
202 done
203
204 if test -n "${db2xman}"; then
8aa4885c 205 AC_MSG_RESULT([${db2xman}])
f91d5e4e 206 enable_doc="yes"
7822022c 207 else
8aa4885c 208 AC_MSG_RESULT([no])
7822022c 209 if test "x$enable_doc" = "xyes"; then
f91d5e4e 210 AC_MSG_ERROR([docbook2x-man is required, but could not be found])
7822022c 211 fi
f91d5e4e 212 enable_doc="no"
7822022c
SG
213 fi
214
215 AC_SUBST(db2xman)
5c8f9bd8 216fi
8aa4885c 217AM_CONDITIONAL([ENABLE_DOCBOOK], [test "x$db2xman" != "x"])
7cb14f34 218AM_CONDITIONAL([USE_DOCBOOK2X], [test "x$db2xman" != "xdocbook2man"])
5c8f9bd8 219
7f951458
DE
220if test "x$db2xman" = "xdocbook2man"; then
221 docdtd="\"-//Davenport//DTD DocBook V3.0//EN\""
222else
223 docdtd="\"-//OASIS//DTD DocBook XML\" \"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd\""
224fi
225AC_SUBST(docdtd)
226
953e611c
JH
227# Documentation (API)
228AC_ARG_ENABLE([api-docs],
229 [AC_HELP_STRING([--enable-api-docs],
f91d5e4e 230 [make API documentation [default=auto]])],
953e611c
JH
231 [], [enable_api_docs=auto])
232
233if test "x$enable_api_docs" = "xyes" -o "x$enable_api_docs" = "xauto"; then
f91d5e4e
SG
234 AC_CHECK_PROGS([HAVE_DOXYGEN],[doxygen])
235 AC_SUBST([HAVE_DOXYGEN])
236
237 if test "x$HAVE_DOXYGEN" != "x"; then
238 enable_api_docs="yes"
239 else
240 if test "x$enable_api_docs" = "xyes"; then
241 AC_MSG_ERROR([doxygen is required, but could not be found])
242 fi
243 enable_api_docs="no"
244 fi
953e611c
JH
245fi
246
f91d5e4e 247AM_CONDITIONAL([ENABLE_API_DOCS], [test "x$HAVE_DOXYGEN" != "x"])
953e611c 248
8aa4885c 249# Apparmor
e767dd55 250AC_ARG_ENABLE([apparmor],
f91d5e4e
SG
251 [AC_HELP_STRING([--enable-apparmor], [enable apparmor support [default=auto]])],
252 [], [enable_apparmor=auto])
e767dd55 253
f91d5e4e 254if test "$enable_apparmor" = "auto" ; then
e767dd55
SH
255 AC_CHECK_LIB([apparmor],[aa_change_profile],[enable_apparmor=yes], [enable_apparmor=no])
256fi
e767dd55
SH
257AM_CONDITIONAL([ENABLE_APPARMOR], [test "x$enable_apparmor" = "xyes"])
258
e075f5d9 259AM_COND_IF([ENABLE_APPARMOR],
8aa4885c
SG
260 [AC_CHECK_HEADER([sys/apparmor.h],[],[AC_MSG_ERROR([You must install the AppArmor development package in order to compile lxc])])
261 AC_CHECK_LIB([apparmor], [aa_change_profile],[],[AC_MSG_ERROR([You must install the AppArmor development package in order to compile lxc])])
262 AC_SUBST([APPARMOR_LIBS], [-lapparmor])])
e075f5d9 263
c8601571
FF
264# GnuTLS
265AC_ARG_ENABLE([gnutls],
266 [AC_HELP_STRING([--enable-gnutls], [enable GnuTLS support [default=auto]])],
267 [], [enable_gnutls=auto])
268
269if test "$enable_gnutls" = "auto" ; then
270 AC_CHECK_LIB([gnutls], [gnutls_hash_fast], [enable_gnutls=yes], [enable_gnutls=no])
271fi
272AM_CONDITIONAL([ENABLE_GNUTLS], [test "x$enable_gnutls" = "xyes"])
273
274AM_COND_IF([ENABLE_GNUTLS],
275 [AC_CHECK_HEADER([gnutls/gnutls.h],[],[AC_MSG_ERROR([You must install the GnuTLS development package in order to compile lxc])])
276 AC_CHECK_LIB([gnutls], [gnutls_hash_fast],[],[AC_MSG_ERROR([You must install the GnuTLS development package in order to compile lxc])])
277 AC_SUBST([GNUTLS_LIBS], [-lgnutls])])
278
fe4de9a6
DE
279# SELinux
280AC_ARG_ENABLE([selinux],
f91d5e4e
SG
281 [AC_HELP_STRING([--enable-selinux], [enable SELinux support [default=auto]])],
282 [], [enable_selinux=auto])
fe4de9a6 283
f91d5e4e 284if test "x$enable_selinux" = xauto; then
fe4de9a6
DE
285 AC_CHECK_LIB([selinux],[setexeccon_raw],[enable_selinux=yes],[enable_selinux=no])
286fi
287AM_CONDITIONAL([ENABLE_SELINUX], [test "x$enable_selinux" = "xyes"])
288AM_COND_IF([ENABLE_SELINUX],
289 [AC_CHECK_HEADER([selinux/selinux.h],[],[AC_MSG_ERROR([You must install the SELinux development package in order to compile lxc])])
e9aeeade
DE
290 AC_CHECK_LIB([selinux], [setexeccon_raw],[true],[AC_MSG_ERROR([You must install the SELinux development package in order to compile lxc])])
291 AC_SUBST([SELINUX_LIBS], [-lselinux])])
fe4de9a6 292
8aa4885c 293# Seccomp syscall filter
e767dd55 294AC_ARG_ENABLE([seccomp],
f91d5e4e
SG
295 [AC_HELP_STRING([--enable-seccomp], [enable seccomp support [default=auto]])],
296 [], [enable_seccomp=auto])
e767dd55 297
f91d5e4e 298if test "x$enable_seccomp" = "xauto" ; then
e767dd55
SH
299 AC_CHECK_LIB([seccomp],[seccomp_init],[enable_seccomp=yes],[enable_seccomp=no])
300fi
e767dd55
SH
301AM_CONDITIONAL([ENABLE_SECCOMP], [test "x$enable_seccomp" = "xyes"])
302
8f2c3a70 303AM_COND_IF([ENABLE_SECCOMP],
12dcc892
JS
304 [PKG_CHECK_MODULES([SECCOMP],[libseccomp],[],[
305 AC_CHECK_HEADER([seccomp.h],[],[AC_MSG_ERROR([You must install the seccomp development package in order to compile lxc])])
306 AC_CHECK_LIB([seccomp], [seccomp_init],[],[AC_MSG_ERROR([You must install the seccomp development package in order to compile lxc])])
307 AC_SUBST([SECCOMP_LIBS], [-lseccomp])
308 ])
309 ])
8f2c3a70 310
d4ef7c50
SH
311# cgmanager
312AC_ARG_ENABLE([cgmanager],
313 [AC_HELP_STRING([--enable-cgmanager], [enable cgmanager support [default=auto]])],
314 [], [enable_cgmanager=auto])
315
316if test "x$enable_cgmanager" = "xauto" ; then
44bbab8c 317 AC_CHECK_LIB([cgmanager],[cgmanager_create],[enable_cgmanager=yes],[enable_cgmanager=no],[-lnih -lnih-dbus -ldbus-1])
d4ef7c50
SH
318fi
319AM_CONDITIONAL([ENABLE_CGMANAGER], [test "x$enable_cgmanager" = "xyes"])
320
321AM_COND_IF([ENABLE_CGMANAGER],
322 [PKG_CHECK_MODULES([CGMANAGER], [libcgmanager])
323 PKG_CHECK_MODULES([NIH], [libnih >= 1.0.2])
324 PKG_CHECK_MODULES([NIH_DBUS], [libnih-dbus >= 1.0.0])
325 PKG_CHECK_MODULES([DBUS], [dbus-1 >= 1.2.16])
326 ])
327
25c7531c 328AC_MSG_CHECKING(for get_pid_cgroup_abs_sync)
07ffb130 329save_LIBS=$LIBS
25c7531c 330AC_SEARCH_LIBS([cgmanager_get_pid_cgroup_abs_sync], [cgmanager], [have_abs_cgroups=yes], [have_abs_cgroups=no], [-lnih -lnih-dbus -ldbus-1])
07ffb130 331LIBS=$save_LIBS
25c7531c
SH
332if test "x$have_abs_cgroups" = "xyes"; then
333 AC_DEFINE([HAVE_CGMANAGER_GET_PID_CGROUP_ABS_SYNC], 1, [Have cgmanager_get_pid_cgroup_abs_sync])
334 AC_MSG_RESULT([yes])
335else
336 AC_MSG_RESULT([no])
337fi
e78884c9 338
a0411275
SH
339AC_MSG_CHECKING(for cgmanager_list_controllers)
340save_LIBS=$LIBS
341AC_SEARCH_LIBS([cgmanager_list_controllers_sync], [cgmanager], [have_list_controllers=yes], [have_list_controllers=no], [-lnih -lnih-dbus -ldbus-1])
342LIBS=$save_LIBS
343if test "x$have_list_controllers" = "xyes"; then
344 AC_DEFINE([HAVE_CGMANAGER_LIST_CONTROLLERS], 1, [Have cgmanager_list_controllers])
345 AC_MSG_RESULT([yes])
346else
347 AC_MSG_RESULT([no])
348fi
349
e78884c9
DE
350# Check for static libcap, make sure the function checked for differs from the
351# the one checked below so the cache doesn't give a wrong answer
352OLD_CFLAGS="$CFLAGS"
353CFLAGS="$CFLAGS -static"
354AC_CHECK_LIB([cap],[cap_init],[have_static_libcap=yes],[have_static_libcap=no])
355AM_CONDITIONAL([HAVE_STATIC_LIBCAP], [test "x$have_static_libcap" = "xyes"])
356if test "x$have_static_libcap" = "xyes"; then
357 AC_DEFINE([HAVE_STATIC_LIBCAP], 1, [Have static libcap])
358fi
359CFLAGS="$OLD_CFLAGS"
360
361
f91d5e4e
SG
362# Linux capabilities
363AC_ARG_ENABLE([capabilities],
364 [AC_HELP_STRING([--enable-capabilities], [enable kernel capabilities support [default=auto]])],
365 [], [enable_capabilities=auto])
366
367if test "x$enable_capabilities" = "xauto"; then
368 AC_CHECK_LIB([cap],[cap_set_proc],[enable_capabilities=yes],[enable_capabilities=no])
369fi
370AM_CONDITIONAL([ENABLE_CAP], [test "x$enable_capabilities" = "xyes"])
371
372AM_COND_IF([ENABLE_CAP],
e37dda71
FF
373 [AC_CHECK_HEADER([sys/capability.h],[],[AC_MSG_ERROR([You must install the libcap development package in order to compile lxc])])
374 AC_CHECK_LIB(cap,cap_set_proc,[],[AC_MSG_ERROR([You must install the libcap development package in order to compile lxc])])
69924fff
CB
375 # Test whether we support getting file capabilities via cap_get_file().
376 AC_CHECK_LIB(cap,cap_get_file, AC_DEFINE(LIBCAP_SUPPORTS_FILE_CAPABILITIES,1,[Have cap_get_file]),[],[])
377 AC_SUBST([CAP_LIBS], [-lcap])])
f91d5e4e 378
769872f9 379# HAVE_SCMP_FILTER_CTX=1 will tell us we have libseccomp api >= 1.0.0
12dcc892
JS
380OLD_CFLAGS="$CFLAGS"
381CFLAGS="$CFLAGS $SECCOMP_CFLAGS"
f91d5e4e 382AC_CHECK_TYPES([scmp_filter_ctx], [], [], [[#include <seccomp.h>]])
2b0ae718 383AC_CHECK_DECLS([seccomp_syscall_resolve_name_arch], [], [], [[#include <seccomp.h>]])
12dcc892 384CFLAGS="$OLD_CFLAGS"
769872f9 385
8aa4885c 386# Configuration examples
3fb0a9bb 387AC_ARG_ENABLE([examples],
f91d5e4e 388 [AC_HELP_STRING([--enable-examples], [install examples [default=yes]])],
3fb0a9bb 389 [], [enable_examples=yes])
3fb0a9bb
AN
390AM_CONDITIONAL([ENABLE_EXAMPLES], [test "x$enable_examples" = "xyes"])
391
8aa4885c 392# Python3 module and scripts
be2e4e54 393AC_ARG_ENABLE([python],
f91d5e4e
SG
394 [AC_HELP_STRING([--enable-python], [enable python binding [default=auto]])],
395 [], [enable_python=auto])
396
397if test "x$enable_python" = "xauto"; then
398 PKG_CHECK_MODULES([PYTHONDEV], [python3 >= 3.2],[enable_python=yes],[enable_python=no])
2bc93759
SG
399 if test "$CC" = "clang"; then
400 enable_python=no
401 fi
402fi
403
404if test "x$enable_python" = "xyes" && test "$CC" = "clang"; then
405 AC_MSG_ERROR([Python3 is incompatible with the clang compiler])
f91d5e4e
SG
406fi
407
be2e4e54
SG
408AM_CONDITIONAL([ENABLE_PYTHON], [test "x$enable_python" = "xyes"])
409
410AM_COND_IF([ENABLE_PYTHON],
8aa4885c 411 [AM_PATH_PYTHON([3.2], [], [AC_MSG_ERROR([You must install python3])])
59ec0a36 412 PKG_CHECK_MODULES([PYTHONDEV], [python3 >= 3.2],[],[AC_MSG_ERROR([You must install python3-dev])])
8aa4885c 413 AC_DEFINE_UNQUOTED([ENABLE_PYTHON], 1, [Python3 is available])])
be2e4e54 414
052616eb
ÇO
415# Enable dumping stack traces
416AC_ARG_ENABLE([mutex-debugging],
f91d5e4e
SG
417 [AC_HELP_STRING([--enable-mutex-debugging], [Makes mutexes to report error and provide stack trace [default=no]])],
418 [], [enable_mutex_debugging=no])
052616eb
ÇO
419AM_CONDITIONAL([MUTEX_DEBUGGING], [test "x$enable_mutex_debugging" = "xyes"])
420
421AM_COND_IF([MUTEX_DEBUGGING],
422 AC_DEFINE_UNQUOTED([MUTEX_DEBUGGING], 1, [Enabling mutex debugging]))
423
3a1675bf
DE
424# Not in older autoconf versions
425# AS_VAR_COPY(DEST, SOURCE)
426# -------------------------
427# Set the polymorphic shell variable DEST to the contents of the polymorphic
428# shell variable SOURCE.
429m4_ifdef([AS_VAR_COPY], [],
430[AC_DEFUN([AS_VAR_COPY],
431 [AS_LITERAL_IF([$1[]$2], [$1=$$2], [eval $1=\$$2])])
432])
433
12e93188
NC
434dnl PKG_CHECK_VAR was introduced with pkg-config 0.28
435m4_ifdef([PKG_CHECK_VAR], [],
436[AC_DEFUN([PKG_CHECK_VAR],
437 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
438 AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl
439 _PKG_CONFIG([$1], [variable="][$3]["], [$2])
440 AS_VAR_COPY([$1], [pkg_cv_][$1])
441 AS_VAR_IF([$1], [""], [$5], [$4])dnl
442 ])# PKG_CHECK_VAR
443])
f080ffd7 444
12e93188 445# Lua module and scripts
f080ffd7 446AC_ARG_ENABLE([lua],
f91d5e4e
SG
447 [AC_HELP_STRING([--enable-lua], [enable lua binding [default=auto]])],
448 [], [enable_lua=auto])
f080ffd7 449
12e93188
NC
450AC_ARG_WITH([lua-pc],
451 [AS_HELP_STRING(
452 [--with-lua-pc=PKG],
453 [Specify pkg-config package name for lua]
f756cda0
NC
454 )], [], [with_lua_pc=no])
455
456if test "x$enable_lua" = "xyes" -a "x$with_lua_pc" != "xno"; then
457 # exit with error if not found
458 PKG_CHECK_MODULES([LUA], [$with_lua_pc], [LUAPKGCONFIG=$with_lua_pc])
459fi
460
f91d5e4e 461if test "x$enable_lua" = "xauto" -a "x$with_lua_pc" != "xno"; then
f756cda0
NC
462 PKG_CHECK_MODULES([LUA], [$with_lua_pc],
463 [LUAPKGCONFIG=$with_lua_pc
464 enable_lua=yes],
465 [enable_lua=no])
466fi
467
468if test "x$enable_lua" != "xno"; then
469 PKG_CHECK_MODULES([LUA], [lua], [LUAPKGCONFIG=lua],
470 [PKG_CHECK_MODULES([LUA], [lua5.2], [LUAPKGCONFIG=lua5.2],
471 [PKG_CHECK_MODULES([LUA], [lua5.1], [LUAPKGCONFIG=lua5.1],
472 [AS_IF([test "x$enable_lua" = "xyes"],
473 [AC_MSG_ERROR([Lua not found. Please use --with-lua-pc=PKG])],
474 [enable_lua=no])]
475 )]
476 )])
477 AS_IF([test "x$LUAPKGCONFIG" != "x"], [enable_lua=yes])
478fi
12e93188
NC
479
480AM_CONDITIONAL([ENABLE_LUA],
69c757b3 481 [test "x$enable_lua" = "xyes"])
f080ffd7
DE
482
483AM_COND_IF([ENABLE_LUA],
f756cda0 484 [AC_MSG_CHECKING([Lua version])
12e93188
NC
485 PKG_CHECK_VAR([LUA_VERSION], [$LUAPKGCONFIG], [V],,
486 [PKG_CHECK_VAR([LUA_VERSION], [$LUAPKGCONFIG], [major_version])])
487 AC_MSG_RESULT([$LUA_VERSION])
94863add
NC
488 AC_SUBST([LUA_LIBDIR], [$libdir/lua/$LUA_VERSION])
489 AC_SUBST([LUA_SHAREDIR], [$datadir/lua/$LUA_VERSION])
12e93188 490 ])
f080ffd7 491
0306de4f
SG
492# Optional bash integration
493AC_ARG_ENABLE([bash],
494 [AC_HELP_STRING([--enable-bash], [build bash integration [default=yes]])],
495 [], [enable_bash=yes])
496AM_CONDITIONAL([ENABLE_BASH], [test "x$enable_bash" = "xyes"])
497
23f4c8a0
EG
498AM_COND_IF([ENABLE_BASH],
499 [AC_MSG_CHECKING([bash completion directory])
500 PKG_CHECK_VAR(bashcompdir, [bash-completion], [completionsdir], ,
501 bashcompdir="${sysconfdir}/bash_completion.d")
502 AC_MSG_RESULT([$bashcompdir])
503 AC_SUBST(bashcompdir)
504 ])
505
8aa4885c 506# Optional test binaries
525421c9 507AC_ARG_ENABLE([tests],
f91d5e4e
SG
508 [AC_HELP_STRING([--enable-tests], [build test/example binaries [default=no]])],
509 [], [enable_tests=no])
525421c9
SG
510AM_CONDITIONAL([ENABLE_TESTS], [test "x$enable_tests" = "xyes"])
511
061ba5d0
SG
512# Allow overriding the default runtime dir (/run)
513AC_ARG_WITH([runtime-path],
514 [AC_HELP_STRING(
515 [--with-runtime-path=dir],
516 [runtime directory (default: /run)]
517 )], [], [with_runtime_path=['/run']])
518
8aa4885c 519# LXC container path, where the containers are actually stored
fbf5de31 520# This is overridden by an entry in the file called LXCCONF
2a59a681 521# (i.e. /etc/lxc/lxc.conf)
aef4ebcf
AN
522AC_ARG_WITH([config-path],
523 [AC_HELP_STRING(
524 [--with-config-path=dir],
e892973e 525 [lxc configuration repository path]
1c41ddcb 526 )], [], [with_config_path=['${localstatedir}/lib/lxc']])
aef4ebcf 527
2a59a681
SH
528# The path of the global lxc configuration file.
529AC_ARG_WITH([global-conf],
530 [AC_HELP_STRING(
531 [--with-global-conf=dir],
532 [global lxc configuration file]
533 )], [], [with_global_conf=['${sysconfdir}/lxc/lxc.conf']])
534
c75c30ec 535# The path of the userns network configuration file
070a4b8e
SH
536AC_ARG_WITH([usernic-conf],
537 [AC_HELP_STRING(
538 [--with-usernic-conf],
539 [user network interface configuration file]
540 )], [], [with_usernic_conf=['${sysconfdir}/lxc/lxc-usernet']])
541
c75c30ec 542# The path of the runtime usernic database
070a4b8e
SH
543AC_ARG_WITH([usernic-db],
544 [AC_HELP_STRING(
545 [--with-usernic-db],
546 [lxc user nic database]
5a15791e 547 )], [], [with_usernic_db=['${with_runtime_path}/lxc/nics']])
070a4b8e 548
8aa4885c 549# Rootfs path, where the container mount structure is assembled
196db713
DL
550AC_ARG_WITH([rootfs-path],
551 [AC_HELP_STRING(
552 [--with-rootfs-path=dir],
553 [lxc rootfs mount point]
1c41ddcb 554 )], [], [with_rootfs_path=['${libdir}/lxc/rootfs']])
c75c30ec 555
6e16552d
CS
556# cgroup pattern specification
557AC_ARG_WITH([cgroup-pattern],
558 [AC_HELP_STRING(
559 [--with-cgroup-pattern=pattern],
560 [pattern for container cgroups]
3a12c64d 561 )], [], [with_cgroup_pattern=['lxc/%n']])
196db713 562
5e1e7aaf
SH
563# Container log path. By default, use $lxcpath.
564AC_MSG_CHECKING([Whether to place logfiles in container config path])
565AC_ARG_ENABLE([configpath-log],
f91d5e4e
SG
566 [AC_HELP_STRING([--enable-configpath-log], [use logfiles in config path [default=no]])],
567 [], [enable_configpath_log=no])
568AC_MSG_RESULT([$enable_configpath_log])
569AM_CONDITIONAL([USE_CONFIGPATH_LOGS], [test "$enable_configpath_log" = "yes"])
5e1e7aaf 570
f91d5e4e 571if test "$enable_configpath_log" = "yes"; then
5e1e7aaf
SH
572 default_log_path="${with_config_path}"
573else
89d556d8 574 default_log_path="${localstatedir}/log/lxc"
5e1e7aaf
SH
575fi
576
577AC_ARG_WITH([log-path],
578 [AC_HELP_STRING(
579 [--with-log-path=dir],
580 [per container log path]
581 )], [], [with_log_path=['${default_log_path}']])
582
8aa4885c
SG
583# Expand some useful variables
584AS_AC_EXPAND(PREFIX, "$prefix")
585AS_AC_EXPAND(LIBDIR, "$libdir")
586AS_AC_EXPAND(BINDIR, "$bindir")
718e4f48 587AS_AC_EXPAND(SBINDIR, "$sbindir")
8aa4885c
SG
588AS_AC_EXPAND(LIBEXECDIR, "$libexecdir")
589AS_AC_EXPAND(INCLUDEDIR, "$includedir")
590AS_AC_EXPAND(SYSCONFDIR, "$sysconfdir")
0a18b545 591AS_AC_EXPAND(LXC_DEFAULT_CONFIG, "$sysconfdir/lxc/default.conf")
8aa4885c
SG
592AS_AC_EXPAND(DATADIR, "$datadir")
593AS_AC_EXPAND(LOCALSTATEDIR, "$localstatedir")
594AS_AC_EXPAND(DOCDIR, "$docdir")
8d256e4d 595AS_AC_EXPAND(LXC_GENERATE_DATE, "$(date --utc --date=@${SOURCE_DATE_EPOCH:-$(date +%s)} '+%Y-%m-%d')")
8aa4885c 596AS_AC_EXPAND(LXCPATH, "$with_config_path")
2a59a681 597AS_AC_EXPAND(LXC_GLOBAL_CONF, "$with_global_conf")
070a4b8e
SH
598AS_AC_EXPAND(LXC_USERNIC_CONF, "$with_usernic_conf")
599AS_AC_EXPAND(LXC_USERNIC_DB, "$with_usernic_db")
0af99319 600AS_AC_EXPAND(LXC_DISTRO_SYSCONF, "$distrosysconf")
8aa4885c
SG
601AS_AC_EXPAND(LXCROOTFSMOUNT, "$with_rootfs_path")
602AS_AC_EXPAND(LXCTEMPLATEDIR, "$datadir/lxc/templates")
f2a95ee1 603AS_AC_EXPAND(LXCTEMPLATECONFIG, "$datadir/lxc/config")
906f8c4d 604AS_AC_EXPAND(LXCHOOKDIR, "$datadir/lxc/hooks")
16d08ae7 605AS_AC_EXPAND(LXCBINHOOKDIR, "$libexecdir/lxc/hooks")
8aa4885c 606AS_AC_EXPAND(LXCINITDIR, "$libexecdir")
5e1e7aaf 607AS_AC_EXPAND(LOGPATH, "$with_log_path")
061ba5d0 608AS_AC_EXPAND(RUNTIME_PATH, "$with_runtime_path")
6e16552d 609AC_SUBST(DEFAULT_CGROUP_PATTERN, ["$with_cgroup_pattern"])
881450bb 610
0080bebf
TA
611# We need the install path so criu knows where to reference the hook scripts.
612AC_DEFINE_UNQUOTED([DATADIR], "$DATADIR", ["Prefix for shared files."])
613
8aa4885c 614# Check for some standard kernel headers
910bb4fa 615AC_CHECK_HEADERS([linux/unistd.h linux/netlink.h linux/genetlink.h],
8aa4885c
SG
616 [],
617 AC_MSG_ERROR([Please install the Linux kernel headers.]),
618 [#include <sys/socket.h>])
35f549fe 619
a6168a17
SG
620# Check for alternate C libraries
621AC_MSG_CHECKING(for bionic libc)
622AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
8aa4885c 623 [[#ifndef __ANDROID__
a6168a17
SG
624error: Not bionic!
625#endif]])],
8aa4885c
SG
626 [is_bionic=yes],
627 [is_bionic=no])
a6168a17 628if test "x$is_bionic" = "xyes"; then
8aa4885c
SG
629 AC_DEFINE([IS_BIONIC], 1, [bionic libc])
630 AC_MSG_RESULT([yes])
a6168a17 631else
8aa4885c 632 AC_MSG_RESULT([no])
a6168a17
SG
633fi
634AM_CONDITIONAL([IS_BIONIC], [test "x$is_bionic" = "xyes"])
635
656994bb
MH
636# Some systems lack PR_CAPBSET_DROP definition => HAVE_DECL_PR_CAPBSET_DROP
637AC_CHECK_DECLS([PR_CAPBSET_DROP], [], [], [#include <sys/prctl.h>])
638
955e2a02
CB
639# Some systems lack PR_{G,S}ET_NO_NEW_PRIVS definition => HAVE_DECL_PR_{G,S}ET_NO_NEW_PRIVS
640AC_CHECK_DECLS([PR_SET_NO_NEW_PRIVS], [], [], [#include <sys/prctl.h>])
641AC_CHECK_DECLS([PR_GET_NO_NEW_PRIVS], [], [], [#include <sys/prctl.h>])
642
e827ff7e 643# Check for some headers
c6d09e15 644AC_CHECK_HEADERS([sys/signalfd.h pty.h ifaddrs.h sys/memfd.h sys/personality.h utmpx.h sys/timerfd.h sys/resource.h])
ff218c25 645
af6824fc
ST
646# lookup major()/minor()/makedev()
647AC_HEADER_MAJOR
648
2d76d1d7 649# Check for some syscalls functions
413c294f 650AC_CHECK_FUNCS([setns pivot_root sethostname unshare rand_r confstr faccessat gettid memfd_create])
2d76d1d7 651
e827ff7e 652# Check for some functions
babbea4b
ÇO
653AC_CHECK_LIB(pthread, main)
654AC_CHECK_FUNCS(pthread_atfork)
614305f3 655AC_CHECK_FUNCS(statvfs)
740ee8c7 656AC_CHECK_LIB(util, openpty)
8b6d8b71 657AC_CHECK_FUNCS([openpty hasmntopt setmntent endmntent utmpxname])
1ba0013f
SG
658AC_CHECK_FUNCS([getline],
659 AM_CONDITIONAL(HAVE_GETLINE, true)
660 AC_DEFINE(HAVE_GETLINE,1,[Have getline]),
661 AM_CONDITIONAL(HAVE_GETLINE, false))
9dbcd668
SG
662AC_CHECK_FUNCS([getsubopt],
663 AM_CONDITIONAL(HAVE_GETSUBOPT, true)
664 AC_DEFINE(HAVE_GETSUBOPT,1,[Have getsubopt]),
665 AM_CONDITIONAL(HAVE_GETSUBOPT, false))
1ba0013f
SG
666AC_CHECK_FUNCS([fgetln],
667 AM_CONDITIONAL(HAVE_FGETLN, true)
668 AC_DEFINE(HAVE_FGETLN,1,[Have fgetln]),
669 AM_CONDITIONAL(HAVE_FGETLN, false))
a04f5407
CB
670AC_CHECK_FUNCS([prlimit],
671 AM_CONDITIONAL(HAVE_PRLIMIT, true)
672 AC_DEFINE(HAVE_PRLIMIT,1,[Have prlimit]),
673 AM_CONDITIONAL(HAVE_PRLIMIT, false))
f48b5fd8
FF
674AC_CHECK_FUNCS([prlimit64],
675 AM_CONDITIONAL(HAVE_PRLIMIT64, true)
676 AC_DEFINE(HAVE_PRLIMIT64,1,[Have prlimit64]),
677 AM_CONDITIONAL(HAVE_PRLIMIT64, false))
1ba0013f 678
c9a84173 679# Check for some libraries
a81c46e9 680AX_PTHREAD
336d5469 681AC_SEARCH_LIBS(clock_gettime, [rt])
c9a84173 682
8aa4885c 683# Check for some standard binaries
5e97c3fc 684AC_PROG_GCC_TRADITIONAL
95a717e9 685AC_PROG_SED
5e97c3fc 686
babbea4b
ÇO
687# See if we support thread-local storage.
688LXC_CHECK_TLS
689
5e97c3fc 690if test "x$GCC" = "xyes"; then
e9f34eb4
JP
691 CFLAGS="$CFLAGS -Wall"
692 if test "x$enable_werror" = "xyes"; then
ce44bee1 693 CFLAGS="$CFLAGS -Werror"
e9f34eb4 694 fi
5e97c3fc 695fi
696
8aa4885c 697# Files requiring some variable expansion
5e97c3fc 698AC_CONFIG_FILES([
288063bd 699 Makefile
b6345ba1 700 lxc.pc
5e97c3fc 701 lxc.spec
f2a95ee1 702
288063bd 703 config/Makefile
8da250da 704 config/apparmor/Makefile
719fae07 705 config/selinux/Makefile
0306de4f
SG
706 config/bash/Makefile
707 config/bash/lxc
dc068290 708 config/init/Makefile
0af99319
MW
709 config/init/common/Makefile
710 config/init/common/lxc-containers
711 config/init/common/lxc-net
dc068290 712 config/init/systemd/Makefile
015f0dd7 713 config/init/systemd/lxc.service
de2b7e65 714 config/init/systemd/lxc@.service
65b27d84 715 config/init/systemd/lxc-net.service
0af99319
MW
716 config/init/sysvinit/Makefile
717 config/init/sysvinit/lxc-containers
718 config/init/sysvinit/lxc-net
a8c71063 719 config/init/upstart/lxc.conf
0af99319 720 config/init/upstart/lxc-net.conf
dc068290 721 config/init/upstart/Makefile
f2a95ee1
SG
722 config/etc/Makefile
723 config/templates/Makefile
6515faa1
JJ
724 config/templates/alpine.common.conf
725 config/templates/alpine.userns.conf
c194ffc1
AV
726 config/templates/archlinux.common.conf
727 config/templates/archlinux.userns.conf
1ecee40b
MW
728 config/templates/centos.common.conf
729 config/templates/centos.userns.conf
5b99af00 730 config/templates/common.conf
4662c6de 731 config/templates/common.conf.d/Makefile
00fe5e1d
SG
732 config/templates/debian.common.conf
733 config/templates/debian.userns.conf
1ecee40b
MW
734 config/templates/fedora.common.conf
735 config/templates/fedora.userns.conf
cae3584e 736 config/templates/gentoo.common.conf
737 config/templates/gentoo.moresecure.conf
705bfae0 738 config/templates/gentoo.userns.conf
108b88ce 739 config/templates/nesting.conf
41cf1ac3
MW
740 config/templates/opensuse.common.conf
741 config/templates/opensuse.userns.conf
9e69977f
DE
742 config/templates/oracle.common.conf
743 config/templates/oracle.userns.conf
bf3e09c0 744 config/templates/plamo.common.conf
cb131151 745 config/templates/plamo.userns.conf
3a05a669
MB
746 config/templates/slackware.common.conf
747 config/templates/slackware.userns.conf
f2a95ee1
SG
748 config/templates/ubuntu-cloud.common.conf
749 config/templates/ubuntu-cloud.lucid.conf
750 config/templates/ubuntu-cloud.userns.conf
751 config/templates/ubuntu.common.conf
752 config/templates/ubuntu.lucid.conf
71d3a659 753 config/templates/ubuntu.userns.conf
c33bdec8 754 config/templates/openwrt.common.conf
beabd0a2
WC
755 config/templates/sparclinux.common.conf
756 config/templates/sparclinux.userns.conf
f6bd219e
GR
757 config/templates/voidlinux.common.conf
758 config/templates/voidlinux.userns.conf
74e75741
G
759 config/templates/sabayon.common.conf
760 config/templates/sabayon.userns.conf
5b99af00 761 config/templates/userns.conf
7ceebfd1 762 config/yum/Makefile
0af99319
MW
763 config/sysconfig/Makefile
764 config/sysconfig/lxc
d823d5b9 765
288063bd 766 doc/Makefile
953e611c 767 doc/api/Makefile
4019712d 768 doc/lxc-attach.sgml
a6adab20 769 doc/lxc-autostart.sgml
4019712d
SG
770 doc/lxc-cgroup.sgml
771 doc/lxc-checkconfig.sgml
735f2c6e 772 doc/lxc-checkpoint.sgml
11cddd70 773 doc/lxc-clone.sgml
ff5e2751 774 doc/lxc-config.sgml
4019712d 775 doc/lxc-console.sgml
2b47bac3 776 doc/lxc-copy.sgml
d823d5b9 777 doc/lxc-create.sgml
778 doc/lxc-destroy.sgml
4019712d 779 doc/lxc-device.sgml
d823d5b9 780 doc/lxc-execute.sgml
d823d5b9 781 doc/lxc-freeze.sgml
4019712d 782 doc/lxc-info.sgml
d823d5b9 783 doc/lxc-ls.sgml
4019712d 784 doc/lxc-monitor.sgml
813a4837 785 doc/lxc-snapshot.sgml
4019712d
SG
786 doc/lxc-start-ephemeral.sgml
787 doc/lxc-start.sgml
788 doc/lxc-stop.sgml
f080ffd7 789 doc/lxc-top.sgml
4019712d
SG
790 doc/lxc-unfreeze.sgml
791 doc/lxc-unshare.sgml
0a29a3ef 792 doc/lxc-update-config.sgml
df3415e0 793 doc/lxc-user-nic.sgml
adade80c 794 doc/lxc-usernsexec.sgml
4019712d
SG
795 doc/lxc-wait.sgml
796
8a67a2b2 797 doc/lxc.conf.sgml
55fc19a1
SG
798 doc/lxc.container.conf.sgml
799 doc/lxc.system.conf.sgml
df3415e0 800 doc/lxc-usernet.sgml
8b8b04f8 801 doc/lxc.sgml
10fba81b 802 doc/common_options.sgml
99e4008c 803 doc/see_also.sgml
d823d5b9 804
baf6671f
DL
805 doc/rootfs/Makefile
806
0f71d073
DL
807 doc/examples/Makefile
808 doc/examples/lxc-macvlan.conf
26c39028 809 doc/examples/lxc-vlan.conf
0f71d073
DL
810 doc/examples/lxc-no-netns.conf
811 doc/examples/lxc-empty-netns.conf
812 doc/examples/lxc-phys.conf
813 doc/examples/lxc-veth.conf
c553a9c2 814 doc/examples/lxc-complex.conf
0f71d073 815
57da8c32 816 doc/ja/Makefile
57da8c32 817 doc/ja/lxc-attach.sgml
28f2ab26 818 doc/ja/lxc-autostart.sgml
57da8c32
KY
819 doc/ja/lxc-cgroup.sgml
820 doc/ja/lxc-checkconfig.sgml
b0e26ca7 821 doc/ja/lxc-checkpoint.sgml
57da8c32 822 doc/ja/lxc-clone.sgml
3220eceb 823 doc/ja/lxc-config.sgml
57da8c32 824 doc/ja/lxc-console.sgml
842948e4 825 doc/ja/lxc-copy.sgml
57da8c32
KY
826 doc/ja/lxc-create.sgml
827 doc/ja/lxc-destroy.sgml
828 doc/ja/lxc-device.sgml
829 doc/ja/lxc-execute.sgml
830 doc/ja/lxc-freeze.sgml
831 doc/ja/lxc-info.sgml
57da8c32
KY
832 doc/ja/lxc-ls.sgml
833 doc/ja/lxc-monitor.sgml
ebe0aeb1 834 doc/ja/lxc-snapshot.sgml
57da8c32
KY
835 doc/ja/lxc-start-ephemeral.sgml
836 doc/ja/lxc-start.sgml
837 doc/ja/lxc-stop.sgml
838 doc/ja/lxc-top.sgml
839 doc/ja/lxc-unfreeze.sgml
840 doc/ja/lxc-unshare.sgml
607a8de5 841 doc/ja/lxc-update-config.sgml
07ece600 842 doc/ja/lxc-user-nic.sgml
755d8d03 843 doc/ja/lxc-usernsexec.sgml
57da8c32
KY
844 doc/ja/lxc-wait.sgml
845
846 doc/ja/lxc.conf.sgml
fb261f53
KY
847 doc/ja/lxc.container.conf.sgml
848 doc/ja/lxc.system.conf.sgml
07ece600 849 doc/ja/lxc-usernet.sgml
57da8c32
KY
850 doc/ja/lxc.sgml
851 doc/ja/common_options.sgml
852 doc/ja/see_also.sgml
853
2b371b26 854 doc/ko/Makefile
2b371b26
SY
855 doc/ko/lxc-attach.sgml
856 doc/ko/lxc-autostart.sgml
857 doc/ko/lxc-cgroup.sgml
858 doc/ko/lxc-checkconfig.sgml
859 doc/ko/lxc-checkpoint.sgml
860 doc/ko/lxc-clone.sgml
861 doc/ko/lxc-config.sgml
862 doc/ko/lxc-console.sgml
b035f792 863 doc/ko/lxc-copy.sgml
2b371b26
SY
864 doc/ko/lxc-create.sgml
865 doc/ko/lxc-destroy.sgml
866 doc/ko/lxc-device.sgml
867 doc/ko/lxc-execute.sgml
868 doc/ko/lxc-freeze.sgml
869 doc/ko/lxc-info.sgml
870 doc/ko/lxc-ls.sgml
871 doc/ko/lxc-monitor.sgml
872 doc/ko/lxc-snapshot.sgml
873 doc/ko/lxc-start-ephemeral.sgml
874 doc/ko/lxc-start.sgml
875 doc/ko/lxc-stop.sgml
876 doc/ko/lxc-top.sgml
877 doc/ko/lxc-unfreeze.sgml
878 doc/ko/lxc-unshare.sgml
879 doc/ko/lxc-user-nic.sgml
880 doc/ko/lxc-usernsexec.sgml
881 doc/ko/lxc-wait.sgml
882
883 doc/ko/lxc.conf.sgml
884 doc/ko/lxc.container.conf.sgml
885 doc/ko/lxc.system.conf.sgml
886 doc/ko/lxc-usernet.sgml
887 doc/ko/lxc.sgml
888 doc/ko/common_options.sgml
889 doc/ko/see_also.sgml
890
906f8c4d 891 hooks/Makefile
27234deb
JC
892 hooks/dhclient-start
893 hooks/dhclient-stop
906f8c4d 894
c01d62f2 895 templates/Makefile
f8d0243a 896 templates/lxc-alpine
897 templates/lxc-altlinux
898 templates/lxc-archlinux
899 templates/lxc-busybox
900 templates/lxc-centos
58a46e06 901 templates/lxc-cirros
c01d62f2 902 templates/lxc-debian
71d3a659 903 templates/lxc-download
c01d62f2 904 templates/lxc-fedora
60fd4623 905 templates/lxc-fedora-legacy
f8d0243a 906 templates/lxc-gentoo
0ef43a5c 907 templates/lxc-oci
9aad9d12 908 templates/lxc-openmandriva
f8d0243a 909 templates/lxc-opensuse
708f4a80 910 templates/lxc-oracle
cab79123 911 templates/lxc-plamo
487ea5f6 912 templates/lxc-pld
3a05a669 913 templates/lxc-slackware
f8d0243a 914 templates/lxc-sshd
915 templates/lxc-ubuntu
916 templates/lxc-ubuntu-cloud
beabd0a2 917 templates/lxc-sparclinux
f6bd219e 918 templates/lxc-voidlinux
11f88f10 919 templates/lxc-sabayon
c9844b87 920
288063bd 921 src/Makefile
5e97c3fc 922 src/lxc/Makefile
2a59a681 923 src/lxc/lxc.functions
ca1e6c02
CB
924 src/lxc/tools/lxc-checkconfig
925 src/lxc/tools/lxc-start-ephemeral
555200a6 926 src/lxc/tools/lxc-update-config
a22185dd 927 src/lxc/version.h
be2e4e54
SG
928 src/python-lxc/Makefile
929
f080ffd7
DE
930 src/lua-lxc/Makefile
931
72d0e1cb 932 src/tests/Makefile
8cb8e496 933 src/tests/lxc-test-usernic
5e97c3fc 934])
935AC_CONFIG_COMMANDS([default],[[]],[[]])
936AC_OUTPUT
f91d5e4e
SG
937
938# Configuration overview
939cat << EOF
940
941----------------------------
942Environment:
943 - compiler: $CC
944 - distribution: $with_distro
89f79f6b 945 - init script type(s): $init_script
f91d5e4e 946 - rpath: $enable_rpath
d8d44659 947 - GnuTLS: $enable_gnutls
0306de4f 948 - Bash integration: $enable_bash
f91d5e4e
SG
949
950Security features:
951 - Apparmor: $enable_apparmor
952 - Linux capabilities: $enable_capabilities
953 - seccomp: $enable_seccomp
954 - SELinux: $enable_selinux
d4ef7c50 955 - cgmanager: $enable_cgmanager
f91d5e4e
SG
956
957Bindings:
958 - lua: $enable_lua
959 - python3: $enable_python
960
961Documentation:
962 - examples: $enable_examples
963 - API documentation: $enable_api_docs
964 - user documentation: $enable_doc
965
966Debugging:
967 - tests: $enable_tests
968 - mutex debugging: $enable_mutex_debugging
969
970Paths:
971 - Logs in configpath: $enable_configpath_log
972EOF
babbea4b
ÇO
973
974if test "x$ac_cv_func_pthread_atfork" = "xno" ; then
975cat << EOF
976
977WARNING: Threading not supported on your platform
978
979 You are compiling LXC for bionic target which lacks certain threading related functionality used by LXC API (like pthread_atfork).
980 Please note that, because of the missing functionality, multithreaded usage of LXC API cause some problems.
981EOF
982fi